1. urpmi bind 2. chkconfig --list named 3. chkconfig named reset 4. /etc/init.d/named # chkconfig: 345 55 45 5. named starts in run levels 3, 4, and 5 named starts at priority 55 and stops at priority 45 6. ps laxww | grep named 7. [ -f ${ROOTDIR}/etc/named.conf ] || exit 0 8. /etc/syslog.conf says to look in /var/log/syslog 9. There is a permission error trying to write to /var/run/named.pid: named: couldn't open pid file '/var/run/named.pid': Permission denied named: exiting (due to early fatal error) 10. owner: root group: root 11. named 12. A process running as "named" can only create a file in a directory owned by "root" if the directory has "other" write permissions. The directory only has write permissions for "root". The named program cannot create the neccessary named.pid file. 13. named 14. The FAQ says the fix is to create /var/run/named/, owned by named. Yes. 15. pid-file ( quoted_string | none ); 16. # host idallen.ca localhost 17. # pid-file option allows named to write under /var/run/named/ at startup options { pid-file "/var/run/named/name.pid"; }; 18. /etc/resolv.conf 19. forwarders { 192.168.3.247; 205.211.30.21; 205.211.30.22; }; forward first; }; 20. supersede domain-name-servers 0.0.0.0 ; 21. search AlgonquinATC.Com nameserver 0.0.0.0 22. File: \bar.txt Size: 0 Blocks: 0 regular file Inode: 76302 Links: 1 Access: (0744/-rwxr--r--) Uid: 500 Gid: 500 Access: 2005-04-08 10:00:00 -0400 Modify: 2005-04-08 10:00:00 -0400 Change: 2005-04-08 10:00:00 -0400 23. false 25. /usr/sbin/httpd2-perl 26. no 27. sets an alternate config file name 28. /etc/httpd/conf/httpd2.conf 29. lrwxrwxrwx 1 root root 19 Mar 16 10:00 /etc/httpd/logs -> ../../var/log/httpd/ 30. /etc/httpd/2.0/logs/access_log 31. true 32. ls -lic /var/www/html/index.shtml 69290 -rw-r--r-- 1 root root 6295 Mar 16 10:00 /var/www/html/index.shtml