使用 ssh 访问服务器时权限被拒绝

使用 ssh 访问服务器时权限被拒绝

我是 Linux 新手,我尝试通过ssh以下方式访问我的新广告服务器:

ssh sjc-ads-6547

我输入了密码,但它说,

Permission denied, please try again.

我的密码是正确的,我尝试将文件中的PasswordAuthenticationPermitRootLogin参数设置为yes,并将ChallengeResponseAuthentication设置为。但仍然不起作用。我想知道哪里出了问题。no/etc/ssh/sshd_config

我一直有这种感觉,

yuxuanli@sjc-ads-6547's password: 
Permission denied, please try again.

yuxuanli@sjc-ads-6547's password: 
Permission denied, please try again.

yuxuanli@sjc-ads-6547's password: 
yuxuanli@sjc-ads-6547: Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password).

非常感谢您的帮助。

答案1

如果远程用户名与本地用户名不同,则需要指定远程用户名,如下所示:

ssh remoteusername@remotehost

相关内容