For KSMG to work on CentOS, Red Hat Enterprise Linux, and Rocky Linux operating systems, you must disable SELinux.
To disable SELinux:
cat /etc/selinux/config
SELINUX
parameter is set to enforcing
, prevent SELinux from running at system boot. To do so, in the /etc/selinux/config file, specify SELINUX=disabled
instead of SELINUX=enforcing
.sestatus
SELinux status
parameter is enabled
, disable SELinux. To do so, run the following command:setenforce 0
SELinux is disabled.
Page top