Centos启用cockpit 远程可视化WEB管理界面

本片文章主要介绍Centos7/8如何开启cockpit远程可视化web管理界面。

开启方法

CentOS 8

systemctl enable cockpit.sockets
systemctl start cockpit.socket

运行以上命令后即可开启!

CentOS7

yum install cockpit
systemctl start cockpit
systemctl enable cockpit.socket

执行后会有类似提示:

Created symlink from /etc/systemd/system/sockets.target.wants/cockpit.socket to /usr/lib/systemd/system/cockpit.socket.

配置防火墙(如已开启)

firewall

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

系统提示:

success

继续运行

firewall-cmd --reload

系统提示:

success

iptables

iptables -A INPUT -p tcp -m tcp --dport 80 -j ACCEPT
service iptables save

至此结束配置。

管理界面

https://ip-address:9090

https://server.domain.com:9090

界面展示

R0gd.png

海拔科技

自媒体人,喜欢网络,热爱研究。本站头条号:星河 熊掌号:海拔科技

相关推荐

利用iftop查看Centos实时网络带宽占用情况

我们在运维的过程中,经常需要查看系统实时网络占用情况,以便分析网络实时带宽流向,便于及时了解系统网络状况。利用iftop工具,可以很轻松的查看Linux系统下实时网络带宽占用情况。 iftop工具的安装 yum -y in …

CentOS 下挂载远程WebDAV为本地目录

本文主要内容主要讲解如何在centos操作系统下通过davfs2挂载WebDAV。本文实现基于CentOS7操作系统,理论上兼容6/7/8文章开始前我们先来了解下, 什么是WebDav   WebDAV (Web-based Distributed Authoring and V …

CentOS7最小化安装后如何安装VMware Tools

本文基于VMware15.x和CentOS-7-x86_64-Minimal-1908,无桌面环境。 Linux下安装VMware Tools的优势 1.VMware虚拟机中如何安装VMWare-Tools详解好处:可以支持图形界面,可以支持共享文件功能等 2.鼠标可以自由在 …