How to install kloxo panel in centos machine.

Kloxo is a web hosting control panel that allows users to manage their web hosting account, email, and domain names through a user-friendly interface. It is open-source software that can be used to manage a single website or multiple websites on a single server.

One of the key features of Kloxo is its ease of use. The control panel has a simple, clean design that makes it easy to navigate. Users can easily create and manage email accounts, set up subdomains, and manage DNS settings. Additionally, Kloxo offers a variety of tools to help users optimize their website, such as a file manager, a backup and restore feature, and a built-in website builder.

Another benefit of Kloxo is its scalability. It can be used to manage a single website or multiple websites on a single server, making it a great option for small business owners or individuals who manage multiple websites.

One limitation of Kloxo is that it is not as feature-rich as some other control panels. It does not have as many advanced tools and settings as other options, such as cPanel or Plesk. Additionally, Kloxo is not as widely supported as some other control panels, so it may not be the best choice for users who need support for a wide range of applications or scripts.

How to install the kloxo panel in centos?

cd /usr/local/src

Use the wget Command to download latest version of Kloxo Auto Installer Script

wget http://download.lxcenter.org/download/kloxo/production/kloxo-installer.sh

Give proper permission.

chmod 777 kloxo-installer.sh

Install Kloxo control panel as Master.

./kloxo-installer.sh –type=master

Next follow the instructions. Once done you will get below message.

Congratulations. Kloxo has been installed succesfully on your server as master

You can connect to the server at:
https:/IP/:7777 – secure ssl connection, or
http:/IP/:7778 – normal one.

The login and password are ‘admin’ ‘admin’. After Logging in, you will have to
change your password to something more secure

We hope you will find managing your hosting with Kloxo
refreshingly pleasurable, and also we wish you all the success
on your hosting venture

Thanks for choosing Kloxo to manage your hosting, and allowing us to be of
service

Once you will get the above message then try accessing above link in browser. If still you are unable to access it then try adding port in iptables.

You can use one of the below command to enable port in iptables:

iptables -A INPUT -p tcp -m tcp –dport 7777:7778 -j ACCEPT

or

iptables -A INPUT -p tcp -m tcp –dport 7777 -j ACCEPT
iptables -A INPUT -p tcp -m tcp –dport 7778 -j ACCEPT

Once done restart the iptables.

/etc/init.d/iptables restart

Leave a Reply

Your email address will not be published. Required fields are marked *