부제: systemd가 모은 로그를 서비스·시간·우선순위로 골라 보기journalctl -u nginx # 특정 서비스 로그journalctl -f # 실시간 따라가기journalctl -n 100 # 최근 100줄$ journalctl -u cron -n 2Jul 12 10:47:01 host CRON[780076]: session opened for user rootJul 12 10:47:01 host CRON[780076]: session closed for user rootjournalctl은 systemd 저널에 쌓인 로그를 본다. -u로 특정 서비스만,-f로 실시간, -p로 우선순위(에러 등)만 거른다.서비스가 왜 안 뜨는지 볼 때 systemctl stat..