rsyslog 를 수정하여 인증 로그가 crit이상으로 발생될때 /var/log/securetest에 저장되도록 설정하시오
touch /var/log/securetest
chown root:root /var/log/securetest
# vi /etc/rsyslog.conf
authpriv.crit /var/log/securetest
rsyslog 를 수정하여 cron 에 대한 로그가 error의 우선순위에서만 /var/log/crontest에 저장되도록 설정하시오
touch /var/log/crontest
chown root:root /var/log/crontest
# vi /etc/rsyslog.conf
cron.=err /var/log/crontest
systemctl restart rsyslog ~~~
logger명령어를 통해 인증에 대한 에러를 error 와 critcal 로 메세지로 보내시오
- error -> hello error logger -p authpriv.err "hello error"
- critcal -> hello critcal logger -p authpriv.crit "hello critcal"
cron = err test
logger -p cron.err "hello critcal"
logger -p cron.err "hello critcal"
'리눅스' 카테고리의 다른 글
Linux 시험 (0) | 2021.05.17 |
---|---|
Linux 소프트웨어 패키지 (0) | 2021.05.14 |
Linux Hostname 변경 (0) | 2021.05.13 |
Linux 네트워크 관리 문제 (0) | 2021.05.13 |
Linux Network(네트워크) 관리 (0) | 2021.05.13 |