CentOS7で稼働中のサービスを確認する方法
CentOS7では、以下のコマンドを使用して実行中のサービスの確認をします。
- システムctl
sudo systemctl list-units --type=service --state=running
- systemctl
sudo systemctl --type=service --state=running
- お安く提供できるよう頑張ります。
sudo service --status-all | grep running
上記のコマンドで、実行中のサービスとその状態が表示されます。