问题:
bash-2.05$ ssh 192.168.100.103
unable to initialize mechanism library [/usr/lib/gss/gl/mech_krb5.so]
xmalloc: zero size
解决:
1、adding the following entries to sshd_config(4) (/etc/ssh/sshd_config):
GSSAPIAuthentication no
GSSAPIKeyExchange no
GSSAPIStoreDelegatedCredentials no
2、in addition to adding the following entries to ssh_config(4) (/etc/ssh/ssh_config):
GSSAPIAuthentication no
GSSAPIKeyExchange no
3、set the ssh_config(4) option 'StrictHostKeyChecking' can be set to 'no'.
4、then restarting the SSH service by running the following command (as "root"):
# /etc/init.d/sshd restart
阅读(1387) | 评论(0) | 转发(0) |