Search This Blog

Saturday, February 16, 2013

Installing the Webmin RPM

Using the Webmin YUM repository

If you like to install and update Webmin via RPM, create the /etc/yum.repos.d/webmin.repo file containing:

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


You should also fetch and install my GPG key with which the packages are signed, with the commands:

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


You will now be able to install with the command :

yum install webminAll


dependencies should be resolved automatically.

To allow access add the new iptables roule:

vi /etc/sysconfig/iptables

-A INPUT -m state --state NEW -m tcp -p tcp --dport 10000 -j ACCEPT

service iptables restart

No comments:

Post a Comment