Installing webmin on CentOS7
- Run the following commands:
# yum update
Is this ok [y/d/N]: y
Is this ok [y/d/N]: y
# cat > /etc/yum.repos.d/webmin.repo << EOF
- Edit the file as follows:
[Webmin]
name=Webmin Distribution Neutral
#baseurl=https://download.webmin.com/download/yum
mirrorlist=https://download.webmin.com/download/yum/mirrorlist
enabled=1
EOF
- Now run
# rpm --import https://www.webmin.com/jcameron-key.asc
- Install webmin
# yum install webmin
Is this ok [y/d/N]: y
- Now open port 10000 to access webmin, to open for all IP's for example
# iptables -I INPUT -p tcp --dport 10000 -j ACCEPT
Completed.