Mar 24, 2023

Webmin : Installation in Ubuntu Server v.22.04.2

 Webmin as a Web GUI for Linux (https://webmin.com/) and have tons of functions and features, this is especially useful for Beginners IT Admin personnel.

Still it is recommended to use SSH to manage any Linux servers instead of GUI.


1. Ensure Ubuntu repository is up-to-date.

sudo apt update && sudo apt upgrade -y

 

2. Install the following pre-requisites.

sudo apt install wget curl nano net-tools gnupg1 -y

 

3. Next is to add Webmin's custom repository into Ubuntu's Apt Sources.

sudo nano /etc/apt/sources.list

 Add the following at the last line of the file and then Save and Exit.

deb http://download.webmin.com/download/repository sarge contrib

 

4. Then download and add Webmin's GPG key into sources.

sudo curl -o setup-repos.sh https://raw.githubusercontent.com/webmin/webmin/master/setup-repos.sh

 Run the script to update GPG key.

sudo sh setup-repos.sh

 

5. Run apt update again.

sudo apt update && sudo apt upgrade -y

 

6. Now you are ready to install Webmin.

sudo apt install webmin -y

 

7. Once installation completed, use any internet browser and open the following link. Replacing [Your IP Address] to match your server configurations.

https://[You IP Address]:10000

 

8. If you have UFW installed, you may need to add exceptions.

sudo ufw allow 10000

 

9. Do a server restart (optional) to ensure everything is loaded automatically at start.

sudo reboot

 

10. The Username and Password is the same you use to login to the server via SSH or Console.

More information and documentation is available at (http://doxfer.webmin.com/Webmin/Main_Page).


EDIT: 10-Apr-2023, Added video.




!!! HAPPY COMPUTING !!!



No comments:

Post a Comment