The Froxlor control panel is an open source ISP oriented server control panel licensed under the GPL 2.0. You can manage everything you need to run a web hosting service including web hosting, domain names, email accounts, and customer support tickets. This article will guide you through installing Froxlor on your Ubuntu 18.04 server. Before setting up Froxlor make sure to have a Fully Qualified Domain Name setup as we’re going to be creating a subdomain.
Configure the Domain Name of the Host
- First Choose a Subdomain and Create an A Record Pointing the Subdomain at Your Server’s IP Address.
- Set the Hostname Based on the Subdomain
$ sudo hostnamectl set-hostname SUBDOMAIN
- Add Your Subdomain to Your Hosts File
$ sudo nano /etc/hosts
Add the following to the bottom of the file, then save and close it:
SERVER_IP SUBDOMAIN.DOMAINNAME.COM SUBDOMAIN
- Restart the Network Manager Service
$ sudosystemctlrestartNetworkManager.service
Install LAMP
- Run tasksel
$ sudo tasksel
If tasksel is missing it can be installed with the following command:
$ sudo apt-get install tasksel
- Select LAMP Server and Then Select OK
Configure PHP and MySQL
- Secure MySQL By Changing the Root Password
$ mysql -u root -p mysql> ALTERUSER'root'@'localhost'IDENTIFIEDWITH mysql_native_password BY'NEWPASSWORD'; mysql> flush privileges;
- Create a Database for Froxlor
mysql> createdatabase froxlor; mysql> createuser'froxlor'@'localhost'IDENTIFIEDBY'NEWPASSWORD'; mysql> GRANT ALL PRIVILEGESON froxlor.* TO'froxlor'@'localhost'IDENTIFIEDBY'NEWPASSWORD'WITHGRANTOPTION; mysql> flushprivileges; mysql> quit;
Install the PHP Extensions That Froxlor Uses
$ sudoapt-getinstallphp7.2-xmlphp7.2-posixphp7.2-mbstringphp7.2-curlphp7.2-bcmathphp7.2-zipphp7.2-json $ sudosystemctlrestartapache2
Install Froxlor
- Rename the index.html File on the Server
$ sudo mv /var/www/html/index.html /var/www/html/indexold.html
- Now Browse to your Subdomain. You Should see the Froxlor Installation Screen
- Click “Start install” and then “Click here to continue” if there are no warnings on the requirements screen
- Select Your Install Language and Enter Passwords for the MySQL Accounts we Setup, Admin Passwords for Froxlor and Verify the Server Domain and IP are Correct.
- The Confirmation Screen Should Show Froxlor Having Been Installed Successfully
You can now login and being using the Froxlor control panel. The navigation menu on the left can get you to most of the panel’s functions. User specific options such as changing the password are available under “Options” in the upper right. Start your exploration of Froxlor under “System”->”Settings.” From there you can see and set a variety of basic web hosting settings and then begin adding customers and plans.
Check out these top 3 VPS services:
- You can discover new info about Best website hosting by clicking this link.