Ben de CentOS 7 üzerinde çalışıyorum ve benzer bir sorun vardı:
# systemctl unmask tmp.mount
Failed to execute operation: Access denied
İnkar SELinux ile ilgilidir. SELinux'u enforcing
modda çalıştırıyorsanız, durumunuz bu olabilir :
# getenforce
Enforcing
Benim durumumda, systemctl
hata USER_AVC
SELinux günlük dosyasında bir reddetme üretmişti /var/log/audit/audit.log
:
type=USER_AVC msg=audit(1475497680.859:2656): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='avc: denied { enable } for auid=0 uid=0 gid=0 path="/dev/null" cmdline="systemctl unmask tmp.mount" scontext=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 tcontext=system_u:object_r:null_device_t:s0 tclass=service exe="/usr/lib/systemd/systemd" sauid=0 hostname=? addr=? terminal=?'
Çözüm
Bu makalede , bunun systemd'deki bir hatadan kaynaklandığı belirtilir ve geçici bir çözüm sağlanır:
systemctl daemon-reexec
İkincil çözüm
Yukarıdakiler işe yaramadıysa, SELinux modunu şu şekilde ayarlayabilirsiniz permissive
:
setenforce 0
ve iyi çalışmalı. Ancak, bu 2. çözümün güvenlik sonuçları vardır.