How to Install Webmin in Ubuntu 22.04

How to Install Webmin in Ubuntu 22.04

Install and use webmin in ubuntu 22.04; Through this tutorial guide, we will learn how to install and use webmin in ubuntu 22.04.

How to Install and Use Webmin in Ubuntu 22.04

Steps to install and use webmin in ubuntu 22.04 system using terminal or command line:

  • Step 1 – Update System Dependencies
  • Step 2 – Install Require System Dependencies
  • Step 3 – Import the Webmin GPG key
  • Step 4 – Add Webmin repository
  • Step 5 – Install Webmin in Ubuntu 22.04
  • Step 6 – Configure Firewall settings
  • Step 7 – Check Webmin Status

Step 1 – Update System Dependencies

Use the following command to update system dependencies; is as follows:

sudo apt update

Step 2 – Install Require System Dependencies

Use the following command to install the required dependencies for Webmin; is as follows:

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

Step 3 – Import the Webmin GPG key

Use the following command to import the Webmin GPG key for signing the packages in the repository: is as follow:

wget https://download.webmin.com/jcameron-key.asc cat jcameron-key.asc | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/jcameron-key.gpg >/dev/null

Step 4 – Add Webmin repository

Use the following command for adding the Webmin repository to the Ubuntu 22.04 system software sources:

sudo add-apt-repository "deb https://download.webmin.com/download/repository sarge contrib"

Step 5 – Install Webmin in Ubuntu 22.04

Use the following command to install webmin in ubuntu 22.04; is as follow:

sudo apt install webmin

Step 6 – Configure Firewall settings

By default, Webmin listens for the connection on the port “10000”. So, we have to open the port “1000” in the Firewall to make the Webmin accessible from the Internet:

sudo ufw allow 10000

Step 7 – Check Webmin Status

Use the following command to check the status of the Webmin service before accessing it on the browser:

sudo systemctl status webmin

Conclusion

In this tutorial guide, we have learned how to install webmin on ubuntu 22.04 system.

Recommended Linux Ubuntu Tutorials

AuthorAdmin

My name is Devendra Dode. I am a full-stack developer, entrepreneur, and owner of Tutsmake.com. I like writing tutorials and tips that can help other developers. I share tutorials of PHP, Python, Javascript, JQuery, Laravel, Livewire, Codeigniter, Node JS, Express JS, Vue JS, Angular JS, React Js, MySQL, MongoDB, REST APIs, Windows, Xampp, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL and Bootstrap from a starting stage. As well as demo example.

Leave a Reply

Your email address will not be published. Required fields are marked *