Can't start Bind open: /etc/named.conf: permission denied
when I replaced the named.conf the selinux context got messed, when doing ls -Z it should look like this
-rw-r--r--. root root system_u:object_r:named_conf_t:s0 named.conf
As you can see mine it's different, to reset it, I used
restorecon -RFv /etc/named.conf
With this, however, doing ls -Z gave me this
-rw-r-----. root root system_u:object_r:named_conf_t:s0 named.conf
To add the last 'r' so everyone can read it, I did
chmod 644 /etc/named.conf
Stopped the service named and restarted it, and it works again.