Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 429 Bytes

Q&A.md

File metadata and controls

20 lines (13 loc) · 429 Bytes

Q&A

CentOS7/8启动服务失败

先关闭SELinux

vi /etc/selinux/config
SELINUX=enforcing
// 修改为禁用
SELINUX=disabled

重启:reboot,再使用一键脚本安装

查看SELinux状态:sestatus

客户端服务启动成功,无法连接?

端口未开放:iptables -I INPUT -s 0.0.0.0/0 -p tcp --dport 22022 -j ACCEPT 或者 rm -rf /etc/iptables && reboot