方法一:使用 last 命令
# last | grep pts
方法二:查看系统日志
如果是 openSUSE & SLES 将以下内容:
# cat /var/log/messages | grep systemd-logind
(注意:必须在 /etc/ssh/sshd_config 配置文档里设置了 LogLevel INFO 参数和 SyslogFacility AUTH 参数以后此方法才会有效)
如果是 Rocky Linux & CentOS Linux & RHEL:
# cat /var/log/secure | grep systemd-logind
或者:
# cat /var/log/messages | grep systemd-logind
(注意:必须在 /etc/ssh/sshd_config 配置文档里设置了 LogLevel INFO 参数和 SyslogFacility AUTH 参数以后此方法才会有效)