RHEL9.2 systemctlコマンドを使ってサービスの起動を確認する

環境
Red Hat Enterprise Linux release 9.1 (Plow)

操作方法
1.下記コマンドを使って個々のサービスの起動確認を実施します。
[構文]
# systemctl status サービス名

[使用例]

# systemctl status NetworkManager

2.サービス名を起動する場合
[構文]
# systemctl start サービス名

[使用例]

# systemctl start NetworkManager

3.サービスを停止する
[構文]
# systemctl stop サービス名

[使用例]

# systemctl stop NetworkManager

4.自動起動を有効にする
[構文]
# systemctl enable サービス名

[使用例]

# systemctl enable chronyd

5.自動起動を無効にする
[構文]
# systemctl disable サービス名

[使用例]

# systemctl disable snmpd

systemctlコマンドの結果

表示	        説明    
active(running)	起動中(常にクライアントからの問い合わせ待ち)
active(existed)	起動中(サービス起動時に処理された後はのんびり待つ)
inactive(dead)	起動しておらず、起動失敗もしていない
failed     	起動失敗

 

RHEL9

Posted by arkgame