AlmaLinux9にWebminをインストール
Webmin on AlmaLinux 9
The installation of Webmin on AlmaLinux 9 is straightforward. Follow these steps to install Webmin on your system:
- First, update your system packages:
sudo dnf update -y
- Next, add the Webmin repository by creating a new repo file:
sudo tee /etc/yum.repos.d/webmin.repo <<EOF
[Webmin]
name=Webmin Distribution Neutral
# baseurl=http://download.webmin.com/download/yum
mirrorlist=http://download.webmin.com/download/yum/mirrorlist
enabled=1
gpgcheck=1
gpgkey=http://www.webmin.com/jcameron-key.asc
EOF
- Install Webmin using the following command:
sudo dnf install webmin -y
Once the installation is complete, Webmin will start automatically. You can also start it manually using:
sudo systemctl start webmin
To enable Webmin to start on boot, use:
sudo systemctl enable webmin
Accessing Webmin
Webmin listens on port 10000 by default. To access the Webmin interface, open your web browser and go to:
https://YOUR_SERVER_IP:10000
Replace YOUR_SERVER_IP with your server's IP address. You will be greeted with a login screen. Use your AlmaLinux user credentials with sudo privileges to log in.