记录问题:
1我在本机windows用ssh root@ubuntu连接失败 显示端口21啥的
2 打开Ubuntu系统,输入ps -e|grep ssh,发现只有agent,没有server
3 安装ssh server,输入sudo apt-get install openssh-server,发现报错信息如下
4 需卸载掉默认安装的openssh-client 因版本较新,而openssh-server依赖的版本较旧
5 输入命令:sudo apt-get autoremove openssh-client
6 重新安装:sudo apt-get install openssh-client openssh-server
7 启动:sudo /etc/init.d/ssh start
再登录还是有一个新的问题:
1 在ubuntu下:sudo gedit /etc/ssh/sshd_config
2 找到配置项,把这个参数改成yes
3 重启服务 sudo service ssh restart
4 登录