CentOS9 开机启动SSH
1.打开:vim /etc/ssh/sshd_config 修改配置文件。
第一步:把“#PermitRootLogin prohibit-password”修改为:“PermitRootLogin yes”。,如下图所示:
第二步:把“#PasswordAuthentication”前面的“#”删掉。
修改完后:wq保存退出。
2.启动ssh服务,命令如下:
Bash
systemctl restart sshd
3.设置开机启动:
systemctl enable sshd.service