How do I install Webmin?

This article explains how to install Webmin on your Dedicated Server or VPS.

CentOS / Fedora

Steps:

iptables -I INPUT -p tcp --dport 10000 -j ACCEPT && /etc/init.d/iptables save
cd /home
rpm -ivh http://softlayer.dl.sourceforge.net/sourceforge/webadmin/webmin-1.470-1.noarch.rpm

Ubuntu/Debian

Steps:

cd /home && wget http://prdownloads.sourceforge.net/webadmin/webmin_1.470_all.deb
apt-get install libnet-ssleay-perl openssl libauthen-pam-perl libio-pty-perl libmd5-perl
dpkg -i webmin_1.470_all.deb
iptables -I INPUT -p tcp --dport 10000 -j ACCEPT && /etc/init.d/iptables save
iptables-save

On Ubuntu you will need to change the last two lines to:

iptables -I INPUT -p tcp --dport 10000 -j ACCEPT
iptables-save
  • 4 Users Found This Useful
Was this answer helpful?

Related Articles

How do I bind my additional IPs?

These instructions are for CentOS / Fedora specifically.By default, we only binds your first...

How do I run a traceroute?

Both Windows and Linux have the ability of diagnosing the health of a connection between a source...

How do I schedule FSCK to run automatically?

Using cron to schedule an FSCKBy default, a fsck is forced after 30 reboots or 180 days.To avoid...

Why is cPanel/WHM not loading?

There are two main reasons why cPanel/WHM isn't loading that we've seen.Brand New ServerIf you...

How to install cPanel on CentOS

Installation Notes A CentOS or Red Hat server that is going to have cPanel installed needs a...