Skip to content

Webmin CentOS 6 Install

This brief yet effective tutorial will instruct you on how to install Webmin, a web-based interface for system administration for Linux, on CentOS 6

The assumption for this Webmin, CentOS 6 tutorial is that you are running as root and have a basic understanding of the software required but if you follow this tutorial you should be able to complete the task successfully.

Learn more about Webmin: http://www.webmin.com/

Install the Webmin YUM Repository

# cat > /etc/yum.repos.d/webmin.repo << EOF
[Webmin]
name=Webmin Distribution Neutral
#baseurl=http://download.webmin.com/download/yum
mirrorlist=http://download.webmin.com/download/yum/mirrorlist
enabled=1
EOF

Add the GPG Key and Install Webmin

# rpm --import http://www.webmin.com/jcameron-key.asc

# yum install webmin

or if you prefer using an editor

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

Installing Webmin, CentOS 6

# yum install webmin

Finally browse to your machine on port 10000

http://centos01.how2centos.com:10000