Arch Linux Logs – Where to Find SSHD Logs

arch linuxlogsopensshsshd

I can't find my sshd logs in the standard places.

What I've tried:

  • Not in /var/log/auth.log
  • Not in /var/log/secure
  • Did a system search for 'auth.log' and found nothing
  • I've set /etc/ssh/sshd_config to explicitly use SyslogFacility AUTH and LogLevel INFO and restarted sshd and still can't find them.

I'm using OpenSSH 6.5p1-2 on Arch Linux.

Best Answer

Try this command to view the log from systemctl:

journalctl -u sshd |tail -100
Related Question