linux修改了sshd的端口,执行命令 systemctl restart sshd.service
重启出现以下错误:
Job for sshd.service failed because the control process exited with error code. See "systemctl status sshd.service" and "journalctl -xe" for details.
是selinux安全策略的错误,果然 getenforce 返回的是 Enforcing 。
执行 setenforce 0
关闭selinux后,一切正常。
买单号网站www.kuaidi5u.com
我多次在centos上搞坏了ssh,一直报错。最后删除ssh,重装#yum install openssh-server,才解决。提醒:重装ssh之前,记得备份sshd_config,免去再次配ssh参数。
说的很对~