2021-01-22 wls2 使用ssh访问
2021-01-22 本文已影响0人
浩克啊12138
① 重装
# 卸载自带的sshd, wls2自带的不完整需要重装
$ sudo apt-get purge openssh-server
# 重新安装
$ sudo apt-get install openssh-server
②修改配置, 设置可用密码登录 找到PubkeyAuthentication
,如图1
$ sudo vim /etc/ssh/sshd_config
图1 去掉PubkeyAuthentication前的#
③ 重启
$ sudo service ssh restart
完成