昨天看油管,看了Fedora29 Server的视频,其中,Server一安装好就默认安装了“Web console”这个服务,看上去很不错。

Google了一把,发现这服务是Cockpit。

Centos7中默认已经集成Cockpit服务了,启用非常简单方便。

安装

:::python
yum install -y cockpit

启用服务

:::python
systemctl enable --now cockpit.socket

打开防火墙

:::python
firewall-cmd --permanent --add-service=cockpit
firewall-cmd --reload

打开WEB页面

在浏览器地址栏中输入服务器IP加端口号,如:

:::python
192.168.1.24:9090

安装扩展服务

:::python
yum -y install cockpit-packagekit cockpit-pcp cockpit-storaged cockpit-dashboard

安装好后,别忘了重启下服务

:::python
systemctl restart cockpit

另:创建诊断报告所依赖的cockpit-sosreport安装不了……

Cockpit的官方网站:https://cockpit-project.org

Redhat官方的Blog:https://www.redhat.com/en/blog/linux-system-administration-management-console-cockpit

Related content