ssh 登录缓慢 sudo 执行缓慢等待时间长问题极可能与内存不足造成
表相 是 ssh 登录就很漫长,大多文章写的是因为DNS解析问题,
实测发现sudo 命令执行时间也很长,
参考处理DNS解析
通过两种表相都去处理/etc/hosts文件,反复测试发现与正常机器比对,无异常。
。
在处理过程执行 systemctl set-hostname xxxx 报如下回显。
Could not set property: Failed to activate service 'org.freedesktop.hostname1': timed out
参考重载 systemctl 服务
https://blog.csdn.net/peyte1/article/details/97624357
临时解决方案:
systemctl daemon-reexec (貌似与 kill -1 1 命令效果类似)
再启动登录服务
systemctl start systemd-logind
问题现象消失,
异常主机内存使用率却是很高,上边有业务,不能随意动主机
有待进行内存优化。
sshd服务异常时,红框处会有很多 sshd子进程,重启服务无效。
20220719更新
完整解决方案
https://access.redhat.com/discussions/3536621
异常systemd
rpm -qa |grep systemd
systemd-219-30.el7.x86_64
升级到 systemd 52.17e 彻底解决
其它表相参考
https://blog.csdn.net/qq_38949027/article/details/102719291