Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过 plink 连接到服务器。但是,我收到以下错误:
C:\>plink -ssh -pw password root@server-name Using username "root". Access denied
我的sshd_config文件包含PermitRootLogin yes,即使这是默认值,只是为了确定。我需要设置一些其他配置以允许这种类型的连接吗?
sshd_config
PermitRootLogin yes
请张贴或检查可能在 中找到的日志内容/var/log/auth.log。另一个问题是您是否为您的 root 帐户添加了密码?否则,您可以尝试使用sudo passwd root.
/var/log/auth.log
sudo passwd root
我的密码包含特殊字符 (!@#$%^)。我需要在它们周围添加双引号以使其不抱怨。傻我!