关于前端:ssh连接出现输入密码提示Permission-denied-please-try-again

41次阅读

共计 189 个字符,预计需要花费 1 分钟才能阅读完成。

首先须要查看是否装置 ssh,如果没有,输出以下命令装置

sudo apt-get install openssh-server

进入 /etc/ssh/sshd_config 文件

vi /etc/ssh/sshd_config

PermitRootLogin prohibit-password 改为 PermitRootLogin yes
而后重启 ssh 服务

/etc/init.d/ssh restart

正文完
 0