Logo

How to Install Webmin on Ubuntu 24.04

Mar 20, 2024

To install Webmin on Ubuntu 24.04, follow the steps below.

Step 1 : Update System Packages

sudo apt update

Step 2 : Install Dependencies

sudo apt install software-properties-common apt-transport-https curl

Step 3 : Add Webmin GPG Key

curl -fsSL https://download.webmin.com/developers-key.asc | sudo gpg --dearmor -o /usr/share/keyrings/webmin.gpg

Step 4 : Add Webmin Repository:

echo "deb [signed-by=/usr/share/keyrings/webmin.gpg] https://download.webmin.com/download/newkey/repository stable contrib" | sudo tee /etc/apt/sources.list.d/webmin.list

Step 5 : Update Package List

sudo apt update

Step 6 : Install Webmin

sudo apt install webmin

Step 7 : Access Webmin

Open a web browser and navigate to:

https://your_server_ip:10000

Replace "your_server_ip" with the actual IP address of your Ubuntu server. You may get a warning about the security of the website, proceed by accepting the risk.

Login with your system username and password.

Congratulations! You have successfully installed Webmin on Ubuntu 24.04.

Recommended