service コマンドでサービスを停止しようとすると以下のようなエラーが発生する場合があります。
※以下は httpd の例ですので適宜読み替えてください。
$ service httpd stop
Redirecting to /bin/systemctl stop httpd.service
Failed to stop httpd.service: The name org.freedesktop.PolicyKit1 was not provided by any .service files
See system logs and 'systemctl status httpd.service' for details.
権限がないことが原因ですので、sudo権限を持つユーザーに昇格してから実行するか コマンドの前にsudoをつけ service httpd stop のようにコマンドを実行しましょう。
以上。
コメント