サービス一覧
自動起動設定
自動起動解除
サービス起動
サービス状態確認
サービス停止
# chkconfig --list # systemctl list-unit-files -t service
自動起動設定
# chkconfig hoge on # systemctl enable hoge.service
自動起動解除
# chkconfig hoge off # systemctl disable hoge.service
サービス起動
# service hoge start # systemctl start hoge.service
サービス状態確認
# service hoge status # systemctl status hoge.service
サービス停止
# service hoge stop # systemctl stop hoge.service
コメント
コメントを投稿