欢迎光临
我们一直在努力

Centos通过semanage添加端口时:无法提交 semanage 事务

概述

由于需要开放telnet非默认端口,添加SElinux规则时报错。

[root@localhost ~]# semanage port -a -t telnetd_port_t -p tcp 23023
SELinux:  Could not downgrade policy file /etc/selinux/targeted/policy/policy.24, searching for an older version.
SELinux:  Could not open policy file 

处理办法

由于semanage命令添加操作是需要SElinux处于开启状态,在关闭状态是无法进行操作的。

[root@localhost ~]# sestatus
SELinux status:                 disabled
[root@localhost ~]# getenforce
Disabled
# 部分文件位置:/etc/sysconfig/selinux
[root@localhost ~]# sudo vi /etc/selinux/config
SELINUX=enforcing

文章来源于互联网:Centos通过semanage添加端口时:无法提交 semanage 事务

赞(0)
未经允许不得转载:莱卡云 » Centos通过semanage添加端口时:无法提交 semanage 事务