其他分享
首页 > 其他分享> > 记一次ssh连接慢

记一次ssh连接慢

作者:互联网

2020-03-28日机房搬迁完后,发现有一台60服务器ssh连接特别慢,但是其他服务器正常;

下面是解决过程:

结果发现重启sshd时发现

Authorization not available. Check if polkit service is running or see debug message for more information.

 

然后用 ssh -v root@ip地址 -p 22 查看具体过程时,输入密码后发现在pledge:network停了好久

 

看下 cat /var/log/secure  发现如下failed

Failed to create session:Failed to activate service 'org.freedesktop.login1':time out

 

然后结合重启sshd失败的原因,重新安装polkit包

yum -y reinstall polkit

重新安装后

systemctl daemon-reexec

在启动登录服务

systemctl start systemd-logind

 

问题解决

标签:sshd,一次,重新安装,polkit,systemctl,ssh,config,连接
来源: https://www.cnblogs.com/minxl/p/12607552.html