Webmin is a web hosting control panel for linux server like cpanel which provides easy to use interface for managing Unix like systems. Its provides options to setup user accounts, Apache, DNS, file sharing and much more. It is the best web control panel which is freely available.
First add Webmin official repository
Webmin isn’t available in the default CentOS repositories, you must add its repository to your system before installing. To do that, run the commands below to create a repository file for Webmin:
nano /etc/yum.repos.d/webmin.repo
And add the following lines:
[Webmin] name=Webmin Distribution Neutral #baseurl=http://download.webmin.com/download/yum mirrorlist=http://download.webmin.com/download/yum/mirrorlist enabled=1
We’ll need to install webmin GPG key now, using following command:
wget http://www.webmin.com/jcameron-key.asc rpm --import jcameron-key.asc
Next step is to update the repositories and all available package updates, to make sure we’re installing the latest version of Webmin. Run following command:
yum check-update
Install Webmin
Install Webmin with the following command:
yum install webmin -y
Start the service and make it start automatically every time you reboot your server:
chkconfig webmin on service webmin start
By default, Webmin will listen on port 10000. Enable webmin port:
firewall-cmd --permanent --zone=public --add-port=10000/tcp firewall-cmd --reload
Access Webmin
Finaly, we can access the Webmin panel using our web browser. Webmin use 10000 as its default port. Type this into our URL address web browser. https://ip-address:10000
then login as super user or root access priviliges. If you are using a firewall, please open port 80 and 10000 to enable access to the control panel. Congratulation’s! You have successfully installed Webmin.