RHEL-Like
1 前言
笔者最近遇到生产服务器使用SSH协议链接非常慢(大约一个链接需要25秒)问题,于是跟着日志查找线索,发现问题出自于服务“systemd-logind.service”。
2 最佳实践
2.1 错误日志提示
Jul 1 15:04:59 hd05 dbus-daemon: dbus[918]: [system] Activating via systemd: service name='org.freedesktop.login1' unit='dbus-org.freedesktop.login1.service' Jul 1 15:04:59 hd05 dbus[918]: [system] Activating via systemd: service name='org.freedesktop.login1' unit='dbus-org.freedesktop.login1.service' Jul 1 15:05:24 hd05 dbus[918]: [system] Failed to activate service 'org.freedesktop.login1': timed out Jul 1 15:05:24 hd05 dbus-daemon: dbus[918]: [system] Failed to activate service 'org.freedesktop.login1': timed out
2.2 重启异常的服务
systemctl restart systemd-logind.service
另外,如果服务无法启动,可运行重新执行系统管理器命令,然后再尝试启动,
systemctl daemon-reexec systemctl start systemd-logind.service
启动后,请使用如下命令查看服务的恢复状态,
systemctl status systemd-logind.service
参阅文档
===================
https://blog.csdn.net/a19891024/article/details/76889244
https://blog.csdn.net/peyte1/article/details/97624357
没有评论