CentOS7/RedHat7上安装 Cockpit

红帽企业Linux
Cockpit包含在版本7.1及更高版本的Red Hat Enterprise Linux Extras存储库中:
启用Extras存储库:

$ sudo subscription-manager repos --enable rhel-7-server-extras-rpms

安装驾驶舱:

$ sudo yum install cockpit

启用驾驶舱:

$ sudo systemctl enable --now cockpit.socket

必要时打开防火墙:

$ sudo firewall-cmd --add-service=cockpit
$ sudo firewall-cmd --add-service=cockpit --permanent

CentOS:
驾驶舱包含在CentOS 7.x中:
安装驾驶舱:

$ sudo yum install cockpit

启用驾驶舱:

$ sudo systemctl enable --now cockpit.socket

必要时打开防火墙:

$ sudo firewall-cmd --permanent --zone=public --add-service=cockpit
$ sudo firewall-cmd --reload

通过 web 浏览器访问 Cockpit web 界面

https://ip-address:9090/

你可能感兴趣的:(linux)