I just installed the latest version of webmin on my CentOs 5 server. Webmin is a GUI control panel that lets you administer a Linux box.
Here is all you need to do to get it installed:
This will install some dependencies.
yum -y install perl-Net-SSLeay
Install the system:
cd /usr/src
wget http://prdownloads.sourceforge.net/webadmin/webmin-1.510-1.noarch.rpm
rpm -i webmin-1.510-1.noarch.rpm
Then you have to open the port
-A INPUT -p tcp -m tcp --dport 10000 -j ACCEPT
It should be added in the file just after similar lines which grant access to ports 80, 22 and so on.
Now restart your iptables.
/etc/init.d/iptables restart
Recent Comments