我以前使用set ssh-key
没有密码登录我的CentOS
服务器,但是现在我已经更改为新的笔记本电脑,所以我不能将ssh
用于我的服务器。
1 我曾在上一台机器~/.ssh/config
文件中设置端口2345
Host mysite
HostName mysite.com
User william
Port 2345
然后我使用ssh mystic
登录。
2 22端口拒绝。
ssh root@xxx.xxx.xxx.xx
port 22: Connection refused
3
ssh root@xxx.xxx.xxx.xx -p 2345
`Permission denied, please try again.`
请。我很高兴能得到任何可能的帮助。
答案 0 :(得分:-1)
好的,正如许多人建议关闭此问题。我终于弄清楚了ssh_config
文件和sshd_config
文件,以确保
ChallengeResponseAuthentication yes
PasswordAuthentication yes
希望可以帮助别人。