In this article, we will walk you through the step-by-step process of installing Webmin, a powerful web-based management tool for Linux servers. Webmin allows you to manage your server through a graphical interface.
Before starting the Webmin installation, make sure that the following requirements are met:
Start by updating the existing packages on your server:
sudo apt update && sudo apt upgrade -y
Webmin requires certain packages to function properly. Install them with:
sudo apt install software-properties-common apt-transport-https wget -y
To install Webmin from the official repository, follow these steps:
Download and add the GPG key:
wget -qO - http://www.webmin.com/jcameron-key.asc | sudo apt-key add -
Add the Webmin repository to your `sources.list` file:
sudo add-apt-repository "deb http://download.webmin.com/download/repository sarge contrib"
Once the repository is added, you can install Webmin with the following commands:
sudo apt update
sudo apt install webmin -y
Webmin runs on port 10000 by default. To access Webmin, open your web browser and navigate to:
http://(Server_IP):10000/
If you’re using UFW (Uncomplicated Firewall), you’ll need to allow traffic on port 10000:
sudo ufw allow 10000/tcp
sudo ufw reload
After completing these steps, you can manage your server using the Webmin web interface. You can manage your server more easily and effectively through a web-based interface with Webmin.