系统相关
首页 > 系统相关> > CentOS8图形化运维利器--Cockpit

CentOS8图形化运维利器--Cockpit

作者:互联网

Linux Cockpit 是一个基于 Web 界面的应用,它提供了对系统的图形化管理。
# 安装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 

使用操作系统用户名密码登录




终端访问

系统诊断报告


蓝图编辑

标签:cockpit,服务,service,查看,9090,Cockpit,systemctl,运维,图形化
来源: https://www.cnblogs.com/shunzi115/p/12632468.html