CentOS Stream 9にサーバ管理ツールCockpitをインストールする

環境
CentOS Stream release 9

操作方法
1.Cockpitをインストールします

# sudo dnf -y install cockpit

2.Cockpitの自動起動を設定します

# sudo systemctl enable --now cockpit.socket
Created symlink /etc/systemd/system/sockets.target.wants/cockpit.socket → /usr/lib/systemd/system/cockpit.socket.

3.cockpitのステータスを確認します

# sudo systemctl enable --now cockpit.socket
Created symlink /etc/systemd/system/sockets.target.wants/cockpit.socket → /usr/lib/systemd/system/cockpit.socket.
[root@localhost ~]#  sudo systemctl status cockpit.socket
● cockpit.socket - Cockpit Web Service Socket
     Loaded: loaded (/usr/lib/systemd/system/cockpit.socket; enabled; vendor preset: disabled)
     Active: active (listening) since Sat 2022-10-15 07:57:37 JST; 50s ago

4.Firewallを設定します

# sudo firewall-cmd --add-service=cockpit --permanent
Warning: ALREADY_ENABLED: cockpit
success

設定を反映します

# sudo firewall-cmd --reload
success

5.Cockpit起動
ブラウザから https://プライベートIP:9090にアクセスします。
例https://192.168.71.152:9090/
ユーザー名:OSのユーザーアカウント
パスワード:OSのアカウントのパスワード

CentOS Stream 9

Posted by arkgame