跳转至

Linux Web图形化界面

时间:2024-10-09 16:28:45

参考:

  1. Cockpit 官网
  2. 安装和运行
  3. 支持的应用程序

Cockpit#

Cockpit 是给服务器提供的 Web 图形化界面。可以通过浏览器管理服务器。

提供如下功能:

  • 性能监控。
  • 网络管理。
  • 软件管理。
  • 终端登录。
  • ... ...

安装#

以 Centos 为例

# 安装
sudo yum install cockpit
# 开机启动
sudo systemctl enable --now cockpit.socket
# 开放防火墙(非必需,如果防火墙是关闭的则不需要该步骤)
sudo firewall-cmd --permanent --zone=public --add-service=cockpit
sudo firewall-cmd --reload

安装完成之后访问 https://localhost:9090