Loading... > Cockpit 是红帽开发的网页版图像化服务管理工具,优点是无需中间层,且可以管理多种服务。  根据其项目主站描述,Cockpit 有如下特点: - 从易用性考虑设计,方便管理人员使用,而不是仅仅的终端命令按钮化。 - 不会打乱已有终端或脚本服务配置,通过 Cockpit 启用的服务可以在终端停止,脚本运行的错误亦会被 Cockpit 捕获。 - 支持一次性管理多个服务,实现自动化和批处理。 - 官网:https://cockpit-project.org/ ### Fedora Fedora 的 Server 版已经内置安装。 1. 安装 cockpit ```shell sudo dnf install cockpit ``` 2. 开机自启 ```shell sudo systemctl enable --now cockpit.socket ``` 3. 防火墙设置 ```shell sudo firewall-cmd --add-service=cockpit sudo firewall-cmd --add-service=cockpit --permanent ``` ### Red Hat Enterprise Linux 1. 在RHEL 7上,启用 Extras 存储库 ```shell sudo subscription-manager repos --enable rhel-7-server-extras-rpms ``` `RHEL8 不需要任何非默认的存储库` 2. 安装 cockpit ```shell sudo yum install cockpit ``` 3. 开机自启 ```shell sudo systemctl enable --now cockpit.socket ``` 4. 防火墙设置 ```shell sudo firewall-cmd --add-service=cockpit sudo firewall-cmd --add-service=cockpit --permanent ``` ### CentoOS `CentOS7.x 包含 Cockpit` 1. 安装 cockpit ```shell sudo yum install cockpit ``` 2. 开机自启 ```shell sudo sysytemctl enable --now cockpit.socket ``` 3. 防火墙设置 ```shell sudo firewall-cmd --permanent --zone=public --add-service=cockpit sudo firewall-cmd --reload ``` ### Ubuntu `Ubuntu 17.04 及以上已包含 Cockpit` 直接安装包 ```shell sudo apt-get install cockpit ``` <hr class="content-copyright" style="margin-top:50px" /><blockquote class="content-copyright" style="font-style:normal"><p class="content-copyright">版权属于:孟小N</p><p class="content-copyright">本文链接:<a class="content-copyright" href="https://ivmoe.com/40.html">https://ivmoe.com/40.html</a></p><p class="content-copyright">除非特别声明,否则本站文章均为原创,转载时须注明出处及本声明</p></blockquote> 最后修改:2020 年 11 月 07 日 12 : 06 AM © 允许规范转载 赞赏 如果觉得我的文章对你有用,请随意赞赏 ×Close 赞赏作者 扫一扫支付 支付宝支付 微信支付
感谢博主分享,谢谢
希望对你有所帮助 :smile:
这个接触比较久了,还不错,还加上各种组件的安装方式
cockpit - 主程序适用于Linux服务器的Web控制台
cockpit-bridge - 桥服务器端组件
cockpit-dashboard - 无远程服务器和仪表板(多一层导航)
cockpit-doc - 部署和开发人员指南
cockpit-docker - 容器Docker容器的Cockpit用户界面
cockpit-machines - 虚拟机virtual machines用户界面
cockpit-networkmanager - 网络网络的驾驶舱用户界面
cockpit-packagekit - 软件更新包的Cockpit用户界面
cockpit-storaged - 存储-用户界面
cockpit-system - 系统
cockpit-tests - 测试专用
cockpit-ws - WEB服务
我有时候用它管理 Docker,有些简单的操作在上面操作还不错。
老哥稳,我自己用的时候没有深入了解过,就是感觉操作起Linux系统来,挺方便的,回头上边那些组件我都试试 :neutral: