<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>floxlor Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/floxlor/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Tue, 05 Jan 2021 16:18:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to install Floxlor on Debian 10?</title>
		<link>https://www.osradar.com/install-floxlor-debian/</link>
					<comments>https://www.osradar.com/install-floxlor-debian/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 08 Jan 2021 01:17:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[floxlor]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[panel]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=27110</guid>

					<description><![CDATA[<p>Hello, friends. In this post, you will learn how to install Floxlor on Debian 10. Floxlor is an open-source Server Management Panel made by many professionals in the field that is outstanding but complete. The main characteristic of Floxlor is that it simplifies the effort of managing your hosting platform. So we can quickly use [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-floxlor-debian/">How to install Floxlor on Debian 10?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello, friends. In this post, you will learn how to install Floxlor on Debian 10.</p>



<p><a href="https://froxlor.org/" target="_blank" rel="noreferrer noopener">Floxlor</a> is an open-source Server Management Panel made by many professionals in the field that is outstanding but complete.</p>



<p>The main characteristic of Floxlor is that <strong>it simplifies the effort of managing your hosting platform</strong>. So we can quickly use it for our purpose.</p>



<p>Some characteristics of the application are the following:</p>



<ul><li>Choose per domain which IPv4 and/or IPv6 addresses and which ports should be used.</li><li>Integration with Let&#8217;s Encrypt. Use free certificates from Let&#8217;s Encrypt directly from within froxlor.</li><li>Style froxlor by overwriting the basis CSS or create your own complete theme. This means that it is completely customisable.</li><li>Includes traffic graphics by resource and client.</li></ul>



<p>And many more. Best of all, we can examine your source code for bugs and other situations.</p>



<h2>Install Floxlor on Debian 10</h2>



<p>The installation process of Floxlor is quite simple considering the large capacity of the application. However, we have to perform some operations before.</p>



<p><strong>Note: for this post, we will use the root user.</strong></p>



<h3>1.- Preparing MariaDB on Debian 10</h3>



<p>The first thing we have to do is install the relational database manager used by Floxlor which is MariaDB.</p>



<p>So, you can read more about how to install MariaDB on Debian 10 with this post</p>



<p><a href="https://www.osradar.com/how-to-install-mariadb-10-4-debian-10/" target="_blank" rel="noreferrer noopener">How to install MariaDB 10.4 on Debian 10?</a></p>



<p>After it is installed and configured, you have to create a new database, user, and grant permissions.</p>



<pre class="wp-block-preformatted">mysql -u root -p</pre>



<pre class="wp-block-preformatted">CREATE DATABASE floxlor;<br>GRANT ALL PRIVILEGES ON floxlor.* TO 'floxloruser'@'localhost' IDENTIFIED BY 'floxlorpss';<br>FLUSH PRIVILEGES;</pre>



<p>Then, modify a parameter corresponding to the root password.</p>



<pre class="wp-block-preformatted">ALTER USER 'root'@'localhost' IDENTIFIED VIA mysql_native_password;</pre>



<p>And in the same way, you can assign a new key to the root user.</p>



<pre class="wp-block-preformatted">ALTER USER 'root'@'localhost' IDENTIFIED BY "password'';</pre>



<p>And finally, get out of the MariaDB shell.</p>



<pre class="wp-block-preformatted">exit;</pre>



<p>Remember to replace &#8220;<strong>password</strong>&#8221; with a strong password you have defined.</p>



<h3>2.- Install Floxlor on Debian 10</h3>



<p>The installation of Floxlor is greatly facilitated by the repository that the developers make available to us.</p>



<p>First, install some packages needed to add the Floxlor repository.</p>



<pre class="wp-block-preformatted">apt install apt-transport-https gnupg</pre>



<p>After this, add the GPG key from the repository.</p>



<pre class="wp-block-preformatted">wget -O - https://deb.froxlor.org/froxlor.gpg | apt-key add -</pre>



<p>Now add the repository to the system:</p>



<pre class="wp-block-preformatted">echo "deb https://deb.froxlor.org/debian buster main" &gt; /etc/apt/sources.list.d/froxlor.list</pre>



<p>Then, refresh <a href="https://www.osradar.com/apt-the-ubuntu-package-manager/" target="_blank" rel="noreferrer noopener">APT</a> to implement the changes:</p>



<pre class="wp-block-preformatted">apt update</pre>



<p>Then you can install Floxlor:</p>



<pre class="wp-block-preformatted">apt install froxlor</pre>



<p>Once the installation of the package is complete a small change in the Apache configuration must be made.</p>



<p>nano /etc/apache2/sites-enabled/000-default.conf</p>



<p>So, find the line:</p>



<pre class="wp-block-preformatted">DocumentRoot /var/www/html</pre>



<p>After that, change it for:</p>



<pre class="wp-block-preformatted">DocumentRoot /var/www/</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="466" height="67" src="https://www.osradar.com/wp-content/uploads/2021/01/1-2.png" alt="1.- Configuring Apache to work with Floxlor" class="wp-image-27465" srcset="https://www.osradar.com/wp-content/uploads/2021/01/1-2.png 466w, https://www.osradar.com/wp-content/uploads/2021/01/1-2-300x43.png 300w" sizes="(max-width: 466px) 100vw, 466px" /><figcaption>1.- Configuring Apache to work with Floxlor</figcaption></figure>



<p>Then, save the changes and close the editor.</p>



<p>Now you need to secure Apache with Let&#8217;s Encrypt. Install the necessary packages.</p>



<pre class="wp-block-preformatted">apt install certbot python3-certbot-apache</pre>



<p>And install the certificate by executing the following command</p>



<pre class="wp-block-preformatted">certbot --apache -d [your-domain]</pre>



<p>Remember that for this process to be completed successfully, you need to have a valid domain name.</p>



<p>Finally, apply the changes by restarting Apache</p>



<pre class="wp-block-preformatted">systemctl restart apache2</pre>



<p>Now we can complete the installation from the web interface.</p>



<h3>3.- Complete the installation of Floxlor</h3>



<p>Now open a web browser and go to <code>https://your-domain/floxlor/</code> and you will see the welcome screen.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2021/01/2-2-1024x502.png" alt="2.- Floxlor welcome screen" class="wp-image-27466" srcset="https://www.osradar.com/wp-content/uploads/2021/01/2-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/2-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/2-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/2-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/2-2-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/2-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Floxlor welcome screen</figcaption></figure>



<p>Next, the installer will verify that you meet the program&#8217;s requirements</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2021/01/3-2-1024x506.png" alt="3.- Floxlor requeriments" class="wp-image-27467" srcset="https://www.osradar.com/wp-content/uploads/2021/01/3-2-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/3-2-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/3-2-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/3-2-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/3-2-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/3-2.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Floxlor requeriments</figcaption></figure>



<p>Then configure the database connection and change the language to your own. In this step, you have to set the password of the regular MariaDB user as the root user together with their passwords. Also, you will have to create an administrator account.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2021/01/4-1024x506.png" alt="4.- Database settings" class="wp-image-27468" srcset="https://www.osradar.com/wp-content/uploads/2021/01/4-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/4-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/4-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/4-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/4-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/4.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Database settings</figcaption></figure>



<p>Afterward, you will receive a message indicating that Floxlor has been installed properly.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2021/01/5-1024x502.png" alt="5.- Floxlor installed" class="wp-image-27469" srcset="https://www.osradar.com/wp-content/uploads/2021/01/5-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/5-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/5-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/5-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/5-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/5.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- Floxlor installed</figcaption></figure>



<p>You will then be able to access the login screen.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2021/01/6-1024x502.png" alt="6.- Floxlor login page" class="wp-image-27470" srcset="https://www.osradar.com/wp-content/uploads/2021/01/6-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/6-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/6-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/6-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/6-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/6.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- Floxlor login page</figcaption></figure>



<p>Login with your created credentials.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2021/01/7-1024x506.png" alt="7.- Floxlor dashboard" class="wp-image-27471" srcset="https://www.osradar.com/wp-content/uploads/2021/01/7-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/7-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/7-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/7-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/7-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/7.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>7.- Floxlor dashboard</figcaption></figure>



<p>The first thing that will call your attention is a message indicating that the system is not yet configured. Click on the message.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2021/01/8-1024x506.png" alt="8.- Unconfigured system" class="wp-image-27472" srcset="https://www.osradar.com/wp-content/uploads/2021/01/8-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/8-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/8-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/8-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/8-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/8.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>8.- Unconfigured system</figcaption></figure>



<p>You can make the configuration from the graphical interface or by executing the command provided below.</p>



<p>In my case, I have chosen the command way.</p>



<p>There will be several questions related to the system. And you will be able to install the missing packages but everything automatically after answering those questions.</p>



<p>At the end, you will see a screen output similar to this one.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="684" height="287" src="https://www.osradar.com/wp-content/uploads/2021/01/9.png" alt="9.- System configured using the terminal" class="wp-image-27473" srcset="https://www.osradar.com/wp-content/uploads/2021/01/9.png 684w, https://www.osradar.com/wp-content/uploads/2021/01/9-300x126.png 300w" sizes="(max-width: 684px) 100vw, 684px" /><figcaption>9.- System configured using the terminal</figcaption></figure>



<p>And then, if you refresh Floxlor, the message will disappear and you can start using it.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2021/01/10-1024x506.png" alt="10.- Floxlor on Debian 10" class="wp-image-27474" srcset="https://www.osradar.com/wp-content/uploads/2021/01/10-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/10-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/10-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/10-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/10-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/10.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>10.- Floxlor on Debian 10</figcaption></figure>



<p>So, enjoy it.</p>



<h2>Conclusion</h2>



<p>Debian 10 is used by many servers around the world so it is good to learn how to install the tools that can help you administer it. There arises Floxlor that you have learned how to install it thanks to this post.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-floxlor-debian/">How to install Floxlor on Debian 10?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-floxlor-debian/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
