Kategorie: Linux

Installation panel Webmin system Centos 8

Below a very simple tutorial on installation of Webmin for servers with CentOS 8
Feel free to read.

At the beginning you turn off SELinux:

Edit / etc / selinux / config

nano /etc/selinux/config

I make changes:

SELINUX=disabled

We install the necessary packages:

dnf install perl perl-Net-SSLeay openssl perl-Encode-Detect

Webmin and charge repo and unpack them:

wget https://prdownloads.sourceforge.net/webadmin/webmin-1.930-1.noarch.rpm
rpm -ivh webmin-1.930-1.noarch.rpm

We create a repository webmin:

nano /etc/yum.repos.d/webmin.repo

The content:

[Webmin]
name=Webmin Distribution Neutral
mirrorlist=https://download.webmin.com/download/yum/mirrorlist
enabled=1

Grab the key and add it to the system:

wget http://www.webmin.com/jcameron-key.asc
rpm --import jcameron-key.asc

Go to the installation webmin:

dnf install webmin

After the correct installation you should see a similar message in the console:

Installing       : webmin-1.930-1.noarch                                                                                                         2/2 
  Running scriptlet: webmin-1.930-1.noarch                                                                                                         2/2 
Webmin install complete. You can now login to https://centos8:10000/
as root with your root password.

Webmin unlocks the port on the firewall and we can go to the login:

firewall-cmd --zone=public --add-port=10000/tcp --permanent
 firewall-cmd --reload

For the panel data log in the root

After a successful login, see This screen:

That's it 🙂

Linux

Udostępnij
Opublikowane przez
Linux

Recent posts

KeePass2 2.52 w Ubuntu 22.04

The guide below describes how to install KeePass on Ubuntu. Całość wykonamy za pomocą kilku poleceń

2 years temu

Installing Master PDF editor in Ubuntu 22.04

Master PDF Editor is a comprehensive PDF program, which includes many features. Oprócz tworzenia i edycji

2 years temu

iotop - memory monitoring

Iotop jest prostym narzędziem dla systemów Uniksowych umożliwiającym monitorowanie użycia dowolnego nośnika pamięci flash/hdd/ssd w

2 years temu

Run multiple commands in one cron job

You can separate two or more commands with semicolons (;), Semicolon (;): służy do oddzielania

2 years temu

Changing the exif data of a photo in the Linux terminal

Poniższy poradnik opisuje w jaki sposób za pomocą konsoli możemy dokonać edycji danych zdjęcia exif.

2 years temu

Installing Rocket.Chat Server on Rocky Linux 8

The following guide describes how to install Rocket.Chat on Rocky Linux 8 Całość bardzo prosto zainstalujemy

2 years temu