Linux serverNETWORK ADMINISTRATIONS

#3 – Install Webmin on CentOS 7 ✔️

How to install Webmin on CentOS 7
Webmin is a web-based graphical tool for unix . It is used to manage services like User management, Disk managemet, Network, Iptables Firewall, Cron, Apache, DNS, File sharing and much more .
In this article i will show you how to install webmin on CentOS 7 linux.

Install Webmin on CentOS 7
First, create a new file webmin.repo in /etc/yum.repos.d/ :

# vi /etc/yum.repos.d/webmin.repo

and paste below line:

[Webmin]
name=Webmin Distribution Neutral
#baseurl=http://download.webmin.com/download/yum
mirrorlist=http://download.webmin.com/download/yum/mirrorlist
enabled=1

Save the file :
ECHAP for exit the editor from insert
for save the file :w
for exit the editor :q

Install webmin GPG key using below command.
# rpm –import http://www.webmin.com/jcameron-key.asc

Now, update the repositorie:
# yum check-update

Install webmin:
# yum install webmin -y

Start the service and make it start automatically
# chkconfig webmin on
# service webmin start

Access Webmin in Browser
http://192.168.0.12:10000
[ or ]
https://192.168.0.12:10000

By default, Centos is installed with firewalld installed and Webmin will listen on port 10000.
For enable webmin Port:
# firewall-cmd –add-port=10000/tcp

1 – Check if Firewall is installed
# service firewalld status

2 – Switch to iptables
will be on next episode

source

centos 7

Leave a Reply

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