Systemd journal log 저장
RHEL8이상에서 기본적으로 systemd jorunal log(dmesg)는 저장되지 않는다. 메모리상에만 존재하고 리부팅하면 기존 로그는 사라지게 된다.
이것을 로그파일로 남도록 설정하기 위해서는 아래처럼 설정하도록 한다.
/etc/systemd/journald.conf
파일을 열어
# This file is part of systemd. # # systemd is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation; either version 2.1 of the License, or # (at your option) any later version. # # Entries in this file show the compile time defaults. # You can change settings by editing this file. # Defaults can be restored by simply deleting this file. # # See journald.conf(5) for details. [Journal] Storage=persistent #Storage=auto #Compress=yes #Seal=yes #SplitMode=uid #SyncIntervalSec=5m #RateLimitIntervalSec=30s
위와 같이 Storage=persistent
를 추가하여 준다.
$ systemctl restart systemd-journald
이후 systemd-journald
데몬을 재기동 하여주게되면 /var/log/journal
밑에 로그가 저장된다.
참조링크
로그인하면 댓글을 남길 수 있습니다.