CentOS8 cockpit运维管理页面
Cockpit 是一个基于 Web 的服务器管理工具,可用于 CentOS 和 RHEL 系统。最近发布的 CentOS 8 和 RHEL 8,其中 cockpit 是默认的服务器管理工具。它的软件包在默认的 CentOS 8 和 RHEL 8 仓库中就有。Cockpit 是一个有用的基于 Web 的 GUI 工具,系统管理员可以通过该工具监控和管理 Linux 服务器,它还可用于管理服务器、容器、虚拟机中的网络和存储,以及检查系统和应用的日志。
Cockpit Web控制台使您可以执行多种管理任务,包括:
管理服务
管理用户帐号
管理和监视系统服务
配置网络接口和防火墙
查看系统日志
管理虚拟机
创建诊断报告
设置内核转储配置
配置SELinux
更新软件
管理系统订阅
cockpit安装启动
[root@CentOS8 ~]# dnf -y install cockpit
[root@CentOS8 ~]# systemctl restart cockpit
[root@CentOS8 ~]# systemctl enable cockpit
#检查服务及端口正常启动
[root@CentOS8 ~]# ss -ntlp|grep cockpit
LISTEN 0 64 127.0.0.1:38645 0.0.0.0:* users:(("cockpit-bridge",pid=58459,fd=13))
LISTEN 0 64 127.0.0.1:37983 0.0.0.0:* users:(("cockpit-bridge",pid=58758,fd=12))
LISTEN 0 128 *:9090 *:* users:(("cockpit-ws",pid=53024,fd=3),("systemd",pid=1,fd=141))
[root@CentOS8 ~]# systemctl status cockpit
浏览器访问https://ip:9090,输入用户密码即可登录
cockpit管理主页
同样也有终端,非常可
[1]: