try to configure bind to write logs to another log file
and the try to reload bind with this
kill -HUP `cat /var/run/named.pid`
and also check the files perms
try something like this the log file
logging{
channel my_log {
file "/var/log/bind/named.log";
severity dynamic;
print-time yes;
print-severity yes;
print-category yes;
};
category default{
my_log;
};
};
|