gpt4 book ai didi

ssh - 连接到 CentOS 7.9 时出现 SSH 错误权限被拒绝

转载 作者:行者123 更新时间:2023-12-04 19:31:10 32 4
gpt4 key购买 nike

关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。












我们不允许在 Stack Overflow 上提出有关通用计算硬件和软件的问题。您可以编辑问题,使其成为 on-topic对于堆栈溢出。


1年前关闭。







Improve this question




我尝试使用以下命令在端口 22 上使用 Root 用户连接到我的 Linux centOS 服务器:

ssh -p 22 root@ip
但连接返回此错误:
root@ip: Permission denied (publickey,gssapi-keyex,gssapi-with-mic).
我应该怎么办?

最佳答案

首先,您必须使用以下命令更改服务器计算机上的权限:

chmod 700 /root/.ssh
chmod 600 /root/.ssh/authorized_keys
然后在/etc/ssh/sshd_config 中编辑为:
sudo sed -i 's/PermitRootLogin prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config;
sudo sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config;
跑:
systemctl stop sshd.service
并运行:
systemctl enable sshd.service
然后运行:
systemctl start sshd.service
在那之后:
systemctl status sshd.service
并检查输出。如果一切顺利,从现在开始,您每次启动时都应该有 ssh 服务。

关于ssh - 连接到 CentOS 7.9 时出现 SSH 错误权限被拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65058679/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com