sevenchina 发表于 2009-02-23 13:39

ssh RemoteServer 报错

问题:

bash-2.05$ ssh 192.168.100.103
unable to initialize mechanism library
xmalloc: zero size
此错误系Solaris 9的一个BUG:
http://sunsolve.sun.com/search/document.do?assetkey=1-26-102451-1

解决:
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


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/46451/showart_1839774.html
页: [1]
查看完整版本: ssh RemoteServer 报错