• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to Install Webmin on REDHAT 8.5

  • 00:06 cat /etc/os-release
  • 00:27 dnf install -y wget perl perl-Net-SSLeay openssl unzip perl-Encode-Detect perl-Data-Dumper
  • 01:03 wget https://download.webmin.com/jcameron-key.asc
  • 01:14 rpm --import jcameron-key.asc
  • 01:31 wget https://prdownloads.sourceforge.net/webadmin/webmin-1.970-1.noarch.rpm
  • 02:04 rpm -Uvh webmin-1.970-1.noarch.rpm
  • 02:28 firewall-cmd --add-port=10000/tcp --zone=public --permanent
  • 02:49 firewall-cmd --reload
7032

To Install Webmin on REDHAT 8.5

Introduction

Webmin is a powerful and flexible web-based server management control panel for Unix-like systems that allows the user to configure operating system internals, including users, disk quotas, services, or configuration files, also modify and control open-source apps, such as the Apache HTTP Server, PHP or MySQL

Step 1: Check the Installed version of OS by using the below command

[root@linuxhelp ~]# cat /etc/os-release 
NAME="Red Hat Enterprise Linux"
VERSION="8.5 (Ootpa)"
ID="rhel"
ID_LIKE="fedora"
VERSION_ID="8.5"
PLATFORM_ID="platform:el8"
PRETTY_NAME="Red Hat Enterprise Linux 8.5 (Ootpa)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos"
HOME_URL="https://www.redhat.com/"
DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/"
BUG_REPORT_URL=https://bugzilla.redhat.com/

Step 2: Install Prerequisites for Webmin by using the below command

[root@localhost ~]# dnf install -y wget perl perl-Net-SSLeay openssl unzip perl-Encode-Detect perl-Data-Dumper

Updating Subscription Management repositories.
Unable to read consumer identity

This system is not registered with an entitlement server. You can use subscription-manager to register.

AppStream                                                                                                   3.1 MB/s | 3.2 kB     00:00    
BaseOS                                                                                                      2.7 MB/s | 2.8 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                                                              9.2 kB/s | 7.1 kB     00:00    
Safe Remi's RPM repository for Enterprise Linux 8 - x86_64                                                  
Package unzip-6.0-45.el8.x86_64 is already installed.
Package perl-Data-Dumper-2.167-399.el8.x86_64 is already installed.
Dependencies resolved.
============================================================================================================================================
 Package                                    Architecture         Version                                              Repository       Size
============================================================================================================================================
Installing:
 perl                                       x86_64               4:5.26.3-420.el8                                     1                73 k


Verifying        : perl-Compress-Raw-Zlib-2.081-1.el8.x86_64                                                                      110/114 
  Verifying        : perl-IO-Compress-2.081-1.el8.noarch                                                                            111/114 
  Verifying        : perl-IO-Zlib-1:1.10-420.el8.noarch                                                                             112/114 
  Verifying        : perl-Text-Diff-1.45-2.el8.noarch                                                                               113/114 
  Verifying        : python3-pyparsing-2.1.10-7.el8.noarch                                                                          114/114 
Installed products updated.
qt5-srpm-macros-5.15.2-1.el8.noarch                                         redhat-rpm-config-125-1.el8.noarch                            
  rust-srpm-macros-5-2.el8.noarch                                             systemtap-sdt-devel-4.5-3.el8.x86_64                          

Complete!

Step 3: Download Webmin’s GPG key for encryption and signing messages using wget command

[root@linuxhelp ~]# wget https://download.webmin.com/jcameron-key.asc
--2022-06-21 22:35:06--  https://download.webmin.com/jcameron-key.asc
Resolving download.webmin.com (download.webmin.com)... 104.207.151.13, 45.76.69.64
Connecting to download.webmin.com 



jcameron-key.asc                   100%[================================================================>]   1.29K  --.-KB/s    in 0s      

2022-06-21 22:35:07 (47.5 MB/s) - ‘jcameron-key.asc’ saved [1320/1320]

Step 4: Once downloaded, import it using the rpm command by using the below command

[root@linuxhelp ~]# rpm --import jcameron-key.asc

Step 5 Download Webmin from the official Webmin download page using the wget command

[root@linuxhelp ~]# wget https://prdownloads.sourceforge.net/webadmin/webmin-1.970-1.noarch.rpm

Connecting to prdownloads.sourceforge.net (prdownloads.sourceforge.net)|204.68.111.105|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://downloads.sourceforge.net/project/webadmin/webmin/1.970/webmin-1.970-1.noarch.rpm [following]
--2022-06-21 22:38:36--  https://downloads.sourceforge.net/project/webadmin/webmin/1.970/webmin-1.970-1.noarch.rpm
webmin-1.970-1.noarch.rpm          100%[================================================================>]  38.89M  94.8KB/s    in 8m 0s   

Step 6: When the download is complete, install Webmin by using the below command

[root@linuxhelp ~]#  rpm -Uvh webmin-1.970-1.noarch.rpm
Verifying...                          ################################# [100%]
Preparing...                          ################################# [100%]
Operating system is Redhat Enterprise Linux
Updating / installing...
   1:webmin-1.970-1                   ################################# [100%]
Webmin install complete. You can now login to https://linuxhelp:10000/
as root with your root password.

Step 7: Add firewall by default 10000 is a port number for webmin by using the below command

[root@linuxhelp ~]# firewall-cmd --add-port=10000/tcp --zone=public --permanent
Success

Step 8: Reload firewall by using the below command

[root@linuxhelp ~]# firewall-cmd --reload
success

Step 9: To Access Webmin, Search your system IP with webmin default port on browser as shown in the below image snap 1

Step 10: At first, you will get an alert as shown in the below image snap 2

Step 11: click on the ‘Advanced’ tab. And Accept the risk and Continue as shown in the below image snap 3

Step 12: Login Webmin using the root credentials as shown in the below image Snap 4

Step 13: This is the Dashboard page of Webmin snap 5

Conclusion:

We have reached the end of this article. In this guide, we have walked you through the steps required to Install Webmin on REDHAT 8.5. Your feedback is much welcome.

Tags:
jayce
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

How do I change my Webmin password if I can't log in?

A

Assuming you have installed Webmin in /usr/libexec/Webmin, you could change the password of the admin user to foo by running
/usr/libexec/webmin/changepass.pl /etc/webmin admin foo

Q

How do I run setup.sh?

A

After extracting the Webmin tar file, cd into the Webmin-1.890 directory and type ./setup.sh. Because the root user on many systems does not have the current directory in his path, just typing setup.sh will not work.

Q

Can I run Webmin or Usermin under Apache?

A

This can be done with some configuration. See this document for details on running Webmin under Apache, or this page for details on running Usermin.

You can also run Webmin under the Zeus web server in a similar way. See this documentation for instructions.

Q

Free Web-Based Control Panel - Webmin 1.791 For Linux?

A

FOLLOW TIS LINK: " https://www.linuxhelp.com/free-web-based-control-panel-webmin/ "

Q

What does the error pam_ck_connector(webmin:session): cannot determine display-device mean?

A

If you see this error in /var/log/auth.log , edit the file /etc/pam.d/webmin and change the line @include common-session to @include common-session-noninteractive . Then run /etc/webmin/restart .

Related Tutorials in How to Install Webmin on REDHAT 8.5

Related Tutorials in How to Install Webmin on REDHAT 8.5

How to install and configure Bind DNS on Webmin
How to install and configure Bind DNS on Webmin
Jan 5, 2018
How to install Xrdp Server (Remote Desktop) on Oracle Linux 8.5
How to install Xrdp Server (Remote Desktop) on Oracle Linux 8.5
Oct 17, 2022
How to Setup Backup Server Using Bacula And Webmin in CentOS
How to Setup Backup Server Using Bacula And Webmin in CentOS
Jul 20, 2016
How to install Webmin in OpenSUSE
How to install Webmin in OpenSUSE
Nov 7, 2016
How to enable repositories on RHEL7.6 without Red Hat-Subscription
How to enable repositories on RHEL7.6 without Red Hat-Subscription
Sep 5, 2020
How to install Squid in Webmin
How to install Squid in Webmin
Aug 26, 2017
How to check the lsb_release of your redhat based Linux distros
How to check the lsb_release of your redhat based Linux distros
Jun 8, 2018
How to Install Docker-CE on RHEL-7.6
How to Install Docker-CE on RHEL-7.6
Sep 11, 2020

Related Forums in How to Install Webmin on REDHAT 8.5

Related Forums in How to Install Webmin on REDHAT 8.5

redhat
ethan class=
How to fix "container-selinux >= 2:2.74" issue while Installing Docker-CE on RHEL7.6
Aug 25, 2020
Linux
AadrikaAnshu class=
How to add timestamps to history On Any Linux Machine
Jun 18, 2019
Ubuntu
Robattalion class=
Ubuntu 20.04 Installation Stuck
Sep 19, 2020
redhat
BlackRishi class=
RHVM_installation issuses
Jul 31, 2019
redhat
atly class=
How to install qcow2 images on a virtual machine on rhev 7.5
Jan 2, 2019
Windows
albiejames class=
Windows is unable to install to the selected location
Jan 12, 2018
Linux
jackbrookes class=
ResourceSpace config error on AWS Instance
Mar 21, 2018
Webmin
kishore class=
Webmin : No Key error
Feb 17, 2018

Related News in How to Install Webmin on REDHAT 8.5

Related News in How to Install Webmin on REDHAT 8.5

Red Hat Enterprise Linux 6.9 Hits Beta
Red Hat Enterprise Linux 6.9 Hits Beta
Jan 6, 2017
Red Hat initiates new pilot program to ease into Digital Transformation
Red Hat initiates new pilot program to ease into Digital Transformation
Mar 30, 2017
Red Hat Preconized Red Hat Openstack Platform 11
Red Hat Preconized Red Hat Openstack Platform 11
May 10, 2017
Red Hat Enterprise Linux 7.7 beta rolled out
Red Hat Enterprise Linux 7.7 beta rolled out
Jun 7, 2019
IBM TO ACQUIRE RED HAT
IBM TO ACQUIRE RED HAT
Nov 15, 2018
Oracle Vulnerability Exploited in the Wild
Oracle Vulnerability Exploited in the Wild
Jun 25, 2019
Red Hat propels Linux towards the “Four Footprints of Technology”
Red Hat propels Linux towards the “Four Footprints of Technology”
Aug 4, 2017
Red Hat allows Microsoft’s .NET Core 2.0 to Linux and associated Cloud
Red Hat allows Microsoft’s .NET Core 2.0 to Linux and associated Cloud
Aug 23, 2017
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Luk Van De Looverbosch ?
How to create a root ?

Hello,
How to create root@linuxhelp in Linux Mint 20.1 64-bit ?
Thanks in advance for your reply.
Best regards.

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.