5
Curently、私はauditdサービスを永久に実行したいと思います。Redhat 7でのauditdサービスの停止を防ぎます
現在の私のauditdサービス:
~]# systemctl cat auditd
# /usr/lib/systemd/system/auditd.service
[Unit]
Description=Security Auditing Service
DefaultDependencies=no
After=local-fs.target systemd-tmpfiles-setup.service
Conflicts=shutdown.target
Before=sysinit.target shutdown.target
RefuseManualStop=yes
ConditionKernelCommandLine=!audit=0
[Service]
ExecStart=/sbin/auditd -n
## To not use augenrules, copy this file to /etc/systemd/system/auditd.service
## and comment/delete the next line and uncomment the auditctl line.
## NOTE: augenrules expect any rules to be added to /etc/audit/rules.d/
ExecStartPost=-/sbin/augenrules --load
#ExecStartPost=-/sbin/auditctl -R /etc/audit/audit.rules
ExecReload=/bin/kill -HUP $MAINPID
[Install]
WantedBy=multi-user.target
# /etc/systemd/system/auditd.service.d/override.conf
[Service]
ExecReload=
ExecReload=/bin/kill -HUP $MAINPID ; /sbin/augenrules --load
私は、コマンドからこのサービスを停止することはできません。
# systemctl stop auditd.service
Failed to stop auditd.service: Operation refused, unit auditd.service may be requested by dependency only.
しかし、ときに私はservice auditd stop
コマンドを使用して。私はこのサービスを正常に停止することができます。
# service auditd stop
Stopping logging: [ OK ]
どうすればいいですか?ありがとう
'systemctl cat auditd'の出力を含めるべきです – Siosm
このコマンドの結果を追加しました。 –