赞
踩
①安装openssh-server
sudo apt-get install openssh-server
在/etc/ssh目录下,vim sshd_config,发现该文件只可读
在终端输入命令 sudo passwd,然后输入当前用户的密码,enter.
再次执行chmod 777 sshd_config然后sshd_config文件就可编辑啦
②配置SSH服务(通过执行以下命令,以便root用户也可使用远程连接)。
su root
vi /etc/ssh/sshd_config
将/etc/ssh/sshd_config文件中的PermitRootLogin prohibit-password注释掉,然后加上本段代码:PermitRootLogin yes
③设置完成后,重新启动SSH服务。
sudo service ssh restart
重启SSH服务后,我们再用Putty或Xshell等工具远程连接Ubuntu服务器,检查看是否能连接成功。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。