共计 2724 个字符,预计需要花费 7 分钟才能阅读完成。
@TOC
一、webmin 介绍
Webmin 是目前性能最弱小的基于 Web 的 Unix 系统管理工具。管理员通过浏览器拜访 Webmin 的各种治理性能并实现相应的治理动作。目前 Webmin 反对绝大多数的 Unix 零碎,这些零碎除了各种版本的 linux 以外还包含:AIX、HPUX、Solaris、Unixware、Irix 和 FreeBSD 等。
二、增加 webmin 的 yum 仓库
[root@192 ~]# vim /etc/yum.repos.d/webmin.repo
[root@192 ~]# cat /etc/yum.repos.d/webmin.repo
[Webmin]
name=Webmin Distribution Neutral
baseurl=http://download.webmin.com/download/yum
enabled=1
三、查看 yum 仓库状态
[root@192 ~]# yum repolist all
Loaded plugins: fastestmirror, langpacks, product-id, search-disabled-repos, subscription-manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
Loading mirror speeds from cached hostfile
* base: mirrors.aliyun.com
* extras: mirrors.aliyun.com
* updates: mirrors.aliyun.com
Webmin | 2.9 kB 00:00:00
base | 3.6 kB 00:00:00
epel | 4.7 kB 00:00:00
extras | 2.9 kB 00:00:00
updates | 2.9 kB 00:00:00
(1/3): epel/x86_64/updateinfo | 1.0 MB 00:00:01
(2/3): Webmin/primary_db | 179 kB 00:00:04
(3/3): epel/x86_64/primary_db | 7.0 MB 00:00:11
repo id repo name status
Webmin Webmin Distribution Neutral enabled: 212
base/7/x86_64 CentOS-7 - Base - mirrors.aliyun.com enabled: 10,072
centosplus/7/x86_64 CentOS-7 - Plus - mirrors.aliyun.com disabled
contrib/7/x86_64 CentOS-7 - Contrib - mirrors.aliyun.com disabled
epel/x86_64 Extra Packages for Enterprise Linux 7 - x86_64 enabled: 13,753
epel-debuginfo/x86_64 Extra Packages for Enterprise Linux 7 - x86_64 - Debug disabled
epel-source Extra Packages for Enterprise Linux 7 - x86_64 - Source disabled
extras/7/x86_64 CentOS-7 - Extras - mirrors.aliyun.com enabled: 512
updates/7/x86_64 CentOS-7 - Updates - mirrors.aliyun.com enabled: 3,842
repolist: 28,391
三、装置 webmin
1. 增加 GPG 密钥
wget http://www.webmin.com/jcameron-key.asc --no-check-certificate
rpm --import jcameron-key.asc
2. 装置 webmin
yum install webmin -y
3. 查看 webmin 状态
root@192 yum.repos.d]# systemctl status webmin
● webmin.service - Webmin server daemon
Loaded: loaded (/usr/lib/systemd/system/webmin.service; enabled; vendor preset: disabled)
Active: active (running) since Fri 2022-06-03 19:40:23 CST; 45s ago
Process: 41185 ExecStart=/etc/webmin/.start-init (code=exited, status=0/SUCCESS)
Main PID: 41186 (miniserv.pl)
Tasks: 1
Memory: 44.7M
CGroup: /system.slice/webmin.service
└─41186 /usr/bin/perl /usr/libexec/webmin/miniserv.pl /etc/webmin/miniserv.conf
Jun 03 19:40:23 192.168.3.146 systemd[1]: Starting Webmin server daemon...
Jun 03 19:40:23 192.168.3.146 .start-init[41185]: Starting Webmin server in /usr/libexec/webmin
Jun 03 19:40:23 192.168.3.146 systemd[1]: Started Webmin server daemon.
4. 放行 firewalld 及敞开 selinux
①敞开 selinux
sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
setenforce 0
getenforce
②放行 firewalld
[root@192 yum.repos.d]# firewall-cmd --permanent --add-port=10000/tcp
success
[root@192 yum.repos.d]# firewall-cmd --reload
success
[root@192 yum.repos.d]# firewall-cmd --list-ports
80/tcp 10000/tcp
[root@192 yum.repos.d]#
四、web 界面拜访
1. 登录 web
https://192.168.3.146:10000/
2. 查看 webmin 的首页
五、webmin 的汉化
webmin–扭转语言和主题–中文字体
正文完