# 安装cockpit
yum -y install cockpit
# 开机启动cockpit
systemctl enable --now cockpit.socket
# 查看服务开机启动信息
systemctl list-unit-files|grep cockpit
cockpit-motd.service static
cockpit.service static
cockpit.socket enabled
# 启动cockpit服务
systemctl start cockpit.service
# 使用cockpit监听9090端口
netstat -tulnp | grep 9090
# 如果系统防火墙开启,则需要执行以下操作,添加cockpit服务到防火墙以打开9090端口。
firewall-cmd --add-service=cockpit --permanent
firewall-cmd --reload
使用操作系统用户名密码登录
终端访问
系统诊断报告
蓝图编辑
原文:https://www.cnblogs.com/shunzi115/p/12632468.html