FedoraRHEL Based

How To Install Webmin on Fedora 40

Install Webmin on Fedora 39

In this tutorial, we will show you how to install Webmin on Fedora 40. Webmin is a powerful, web-based system administration tool that simplifies the management of Linux servers. It provides an intuitive interface for managing various aspects of your server, such as user accounts, Apache, DNS, file sharing, and much more.

This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo‘ to the commands to get root privileges. I will show you the step-by-step installation of the Webmin server management on Fedora 40.

Prerequisites

Before we dive into the installation process, ensure that you have the following prerequisites in place:

  • A server running one of the following operating systems: Fedora 40.
  • It’s recommended that you use a fresh OS install to prevent any potential issues.
  • You will need access to the terminal to execute commands. Fedora provides the Terminal application for this purpose. It can be found in your Applications menu.
  • A stable internet connection to download the necessary packages.
  • A non-root sudo user or access to the root user. We recommend acting as a non-root sudo user, however, as you can harm your system if you’re not careful when acting as the root.

Install Webmin on Fedora 40

Step 1. Update Your System.

To ensure a smooth installation process and maintain the security of your Fedora 40 system, it is crucial to update all the installed packages to their latest versions. This step helps prevent potential compatibility issues and vulnerabilities. To update your system, open the terminal and run the following command:

sudo dnf clean all
sudo dnf update

Step 2. Installing Required Dependencies

Webmin relies on several dependencies to function correctly on Fedora 40. These dependencies include Perl modules and libraries that are essential for Webmin’s functionality. To install the required dependencies, run the following command in the terminal:

sudo dnf install perl perl-Net-SSLeay openssl perl-IO-Tty perl-Encode-Detect

Here’s a brief explanation of each dependency:

  • perl: The Perl programming language, which is extensively used by Webmin.
  • perl-Net-SSLeay: A Perl module that provides support for SSL/TLS encryption.
  • openssl: The OpenSSL library, which is required for secure communication.
  • perl-IO-Tty: A Perl module for interacting with terminal devices.
  • perl-Encode-Detect: A Perl module for detecting character encodings.

Step 3. Installing Webmin on Fedora 40.

With the dependencies installed, we can now proceed to download and install Webmin on Fedora 40. Follow these steps:

wget https://github.com/webmin/webmin/releases/download/2.105/webmin-2.105-1.noarch.rpm

Next, install the downloaded RPM package using the rpm command:

sudo rpm -U webmin-2.105-1.noarch.rpm

Step 4. Configure Firewall for Webmin Access.

By default, Webmin listens on port 10000 for incoming connections. To access the Webmin web interface from a remote system, you need to configure your firewall to allow traffic on this port. Fedora 40 uses the firewalld firewall management tool. To open port 10000, execute the following commands:

sudo firewall-cmd --add-port=10000/tcp --permanent
sudo firewall-cmd --reload

The first command adds a permanent rule to allow TCP traffic on port 10000, while the second command reloads the firewall configuration to apply the changes.

Step 5. Access Webmin Web Interface.

With Webmin installed and the firewall configured, you can now access the Webmin web interface. Follow these steps:

Enter the following URL in the address bar:

https://<your-server-ip>:10000

Since Webmin uses a self-signed SSL certificate by default, your browser may display a security warning. Click on “Advanced” and then “Proceed” to continue to the Webmin login page.

On the login page, enter the username “root” and the password for the root user on your Fedora 40 system. Click “Login” to access the Webmin dashboard.

Install Webmin on Fedora 39

Congratulations! You have successfully installed Webmin. Thanks for using this tutorial for installing the Webmin web-based system administration tool on your Fedora 40 system. For additional or useful information, we recommend you check the official Webmin website.

VPS Manage Service Offer
If you don’t have time to do all of this stuff, or if this is not your area of expertise, we offer a service to do “VPS Manage Service Offer”, starting from $10 (Paypal payment). Please contact us to get the best deal!

r00t

r00t is a seasoned Linux system administrator with a wealth of experience in the field. Known for his contributions to idroot.us, r00t has authored numerous tutorials and guides, helping users navigate the complexities of Linux systems. His expertise spans across various Linux distributions, including Ubuntu, CentOS, and Debian. r00t's work is characterized by his ability to simplify complex concepts, making Linux more accessible to users of all skill levels. His dedication to the Linux community and his commitment to sharing knowledge makes him a respected figure in the field.
Back to top button