解决办法:

1、修改/etc/ssh/sshd_config内的 UseDns注释去掉并改为no               UseDns  no

2、修改本机的客户端配置文件ssh_config,注意,不是sshd_config

vi /etc/ssh/ssh_conf

找到

GSSAPIAuthentication yes

改为

GSSAPIAuthentication no

保存。

service sshd restart

 

GSSAPI ( Generic Security Services Application Programming Interface) 是一套类似Kerberos 5 的通用网络安全系统接口。该接口是对各种不同的客户端服务器安全机制的封装,以消除安全接口的不同,降低编程难度。但该接口在目标机器无域名解析时会有问题。我看到有人给ubuntu提交了相关bug, 说要将GSSAPIAuthentication的缺省值设为no,不知为何,ubuntu9.10的缺省值还是yes。

 

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------

mysql连接慢解决办法

编辑/etc/mysql/my.cnf
在[mysqld]下面加入如下两行

skip-name-resolve   
 

skip-grant-tables  ---------这行可以不加,慎重使用,