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

Greetings, I'm Devendra Dode, a full-stack developer, entrepreneur, and the proud owner of Tutsmake.com. My passion lies in crafting informative tutorials and offering valuable tips to assist fellow developers on their coding journey. Within my content, I cover a spectrum of technologies, including 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. Whether you're starting out or looking for advanced examples, I provide step-by-step guides and practical demonstrations to make your learning experience seamless. Let's explore the diverse realms of coding together.

Leave a Reply

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