centos8的ssh的密码怎么设置
时间: 2023-05-16 12:05:02 浏览: 279
CentOS 6.5 SSH免密码登录
您可以通过以下步骤设置 CentOS 8 的 SSH 密码:
1. 使用 root 用户登录到 CentOS 8 服务器。
2. 打开 SSH 配置文件 /etc/ssh/sshd_config。
3. 找到以下行:
#PermitRootLogin yes
4. 将其改为:
PermitRootLogin yes
5. 找到以下行:
#PasswordAuthentication yes
6. 将其改为:
PasswordAuthentication yes
7. 保存并关闭文件。
8. 重启 SSH 服务:
systemctl restart sshd
9. 使用以下命令设置 root 用户的密码:
passwd root
10. 输入新密码并确认。
现在您已经成功设置了 CentOS 8 的 SSH 密码。
阅读全文