CentOS8 graphical shipped Willy is --Cockpit

Linux Cockpit is a Web-based application interface, which provides a graphical management of the system.
  • Monitor system activity (CPU, memory, disk and network IO traffic) - System
  • Check the system log entries - log
  • View disk partition capacity - storage
  • View network activity (sending and receiving) - Network
  • Viewing User Accounts - Account
  • Check the system status of the service - service
  • Extract information installed applications - applications
  • View and install available updates (if logged in as root) and reboot the system when needed - Software Updates
  • Access terminal - Terminal
# 安装cockpit
yum -y install cockpit
# 开机启动cockpit
systemctl enable --now cockpit.socket

# 查看服务开机启动信息
systemctl list-unit-files|grep cockpit
cockpit-motd.service                        static   
cockpit.service                             static   
cockpit.socket                              enabled 


# 启动cockpit服务
systemctl start cockpit.service

# 使用cockpit监听9090端口
netstat -tulnp | grep 9090

# 如果系统防火墙开启,则需要执行以下操作,添加cockpit服务到防火墙以打开9090端口。
firewall-cmd --add-service=cockpit --permanent 
firewall-cmd --reload 

Using the operating system user name and password to log




terminal access

system diagnostic reports


blueprint editor

Guess you like

Origin www.cnblogs.com/shunzi115/p/12632468.html