Failed to start Security Auditing Service.

/var/log/boot.logをチェックしていたら、
Failed to start Security Auditing Service.
が表示されている。早速調べる
# systemctl status auditd
auditd.service: Start request repeated too quickly. の表示があるので、
# gedit /usr/lib/systemd/system/auditd.service
を見ると、Restart=on-failure がある。リスタートの時間を長くするより、リスタートしなようにしてみるので Restart=no に変更して、
# systemctl start auditd
Warning: The unit file, source configuration file or drop-ins of auditd.service changed on disk. Run ‘systemctl daemon-reload’ to reload units.
なので
# systemctl daemon-reload
そして更にスタート
# systemctl start auditd
勿論スタートに失敗するので
# systemctl status auditd
終わりの方に
auditd.service: Control process exited, code=exited status=6
があるので、これをgoogle先生に聞くと
https://discussion.fedoraproject.org/t/failed-to-start-security-auditing-service/77095/3 これによると auditdを再インストールしろとの事
# dnf reinstall audit
# systemctl reset-failed auditd.service
# systemctl start auditd.service
# systemctl status auditd.service
を見るとactive (running) になっているので、一見落着
auditd.serviceRestart=noはそのままにしておく。

フジマル について

1947年生れ、東京電機大学二部電気通信工学科卒、最後はスリランカ航空で営業だったのですが2018年に㈱インパック・ジャパンに再就職。趣味:登山、スキー、車いじり、コンピューター
カテゴリー: その他 パーマリンク

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

CAPTCHA


This site uses Akismet to reduce spam. Learn how your comment data is processed.