ESX Server的SSH配置Root用户远程登录

针对 Classic ESX:
 
ESX3.5和ESX4.0在默认情况下SSH是开启的,但不允许以root权限登录。
解决办法:
修改/etc/ssh/sshd_config,并重启sshd服务。 
PermitRootLogin no
=>
PermitRootLogin yes
将no 修改为 yes
 
/etc/init.d/sshd restart
 
 
对于 Embedded ESX 的解决办法:
 
1. 编辑/etc/inetd.conf, 找到ssh的那一行, 去掉前面的注释。
2. ps | grep inetd, 找到inetd对应的进程。
3. kill -HUP pid_of_inetd
转载于:
http://blog.chinaunix.net/u/8059/showart_1987962.html
 

你可能感兴趣的:(server,ssh,kill,远程登录)