赞
踩
sudo apt-get install openssh-server
sudo service ssh start
按照以上方式装完ssh服务后,默认是开机自启的,相关设置见文件/etc/init/ssh.conf
,若想取消开机自启,请将配置文件中的start on filesystem or runlevel [2345]
注释掉即可。
特别注意1: 启动ssh服务只能使用sudo service ssh start
,其它任何命令包括service ssh start
,su+service ssh start
,/etc/init.d/ssh start
均不行.可通过ps -e |grep ssh
查看输出中是否有"sshd"判断服务是否开启.
特别注意2: ubuntu默认不能使用root用户登录ssh,因此使用root登录时,即使输入正确密码也不能成功.所以需要修改文件"/etc/ssh/sshd_config",将PermitRootLogin without-password
修改为PermitRootLogin yes
并重启ssh服务。
sudo apt-get remove iptables
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。