View Single Post
  #3 (permalink)  
Old 04-24-2009, 06:01 AM
JhonV JhonV is offline
Junior Member
 
Posts: 8
Default

Quote:
Originally Posted by uxbod View Post
Welcome to the forums

You are reporting no MX or A record for your ZCS server so you will need to setup a Wiki :: Split DNS architecture. Also note that as you are on a *NIX based system it is better to keep everything to lowercase
Hi, I follow the instructions and i cant config the named service.
This is the error:
[root@safafiles init.d]# ./named start
Iniciando named:
Error en la configuración de named:
zone safafiles.safa.edu.uy/IN: loading master file db.safafiles.safa.edu.uy: file not found
_default/safafiles.safa.edu.uy/IN: file not found [FALLÓ]

I had this files:

[root@safafiles etc]# cat /etc/named.conf
options {
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
forwarders { 10.11.0.1 ; };
};
include "/etc/rndc.key";
zone "safafiles.safa.edu.uy" {
type master;
file "db.safafiles.safa.edu.uy";
};

[root@safafiles named]# cat db.safafiles.safa.edu.uy

;
; Addresses and other host information.
;
@ IN SOA safafiles.safa.edu.uy. csgw.safafiles.safa.edu.uy. {
10118 ; Serial
43200 ; Refresh
3600 ; Retry
3600000 ; Expire
2592000 ; Minimum
; Define the nameservers and mail servers
IN NS 10.11.0.3
IN A 10.11.0.3
IN MX 10 safafiles.safa.edu.uy

I take your tip and i modified the names in lowercase..

[root@safafiles named]# cat /etc/resolv.conf
search safafiles.safa.edu.uy
nameserver 10.11.0.3
nameserver 10.11.0.1
nameserver 10.11.0.2
domain safa.edu.uy
[root@safafiles named]#
************************************************** ****
[root@safafiles named]# cat /etc/hosts
127.0.0.1 localhost.localdomain localhost safafiles
10.11.0.1 safafiles.safa.edu.uy safafiles
[root@safafiles named]#
************************************************** ******
[root@safafiles named]# cat /etc/hostname
safafiles.safa.edu.uy


Any Idea what hap? The file db.safafiles.safa.edu.uy is in /etc/named/chroot/var/named/ with a simbolic link to /var/named/

Thanks,
JhonV

Last edited by JhonV; 04-24-2009 at 06:08 AM.. Reason: error in /etc/hosts
Reply With Quote