DEV Community

Cover image for How to install Webmin on Ubuntu Server
Sreeju S
Sreeju S

Posted on

How to install Webmin on Ubuntu Server

How to install Webmin in Ubuntu Server

The simplest and best way to get Webmin is to use automatic webmin-setup-repo.sh script to configure repositories on your Ubuntu Server. It can be done in two easy steps:

curl -o webmin-setup-repo.sh https://lnkd.in/dmS3HWff

This script will automatically setup our repository and install our GPG keys on your system, and provide webmin package for installation and easy upgrades in the future.

Now just use APT to install Webmin:

apt-get install webmin --install-recommends

Modify the Firewall rules (By default the webmin runs on port 10000):
sudo ufw allow 10000/tcp
sudo ufw reload

Open your brower and enter: :10000

BOOM You got the Webmin running on your server.

Top comments (0)