DNS Error: Loading from master file failed:

Scott Crespo

I'm not very skilled at debugging DNS issues. I'm trying to configure two named virtual hosts in apache2 at foo.com and dev.foo.com

Currently I'm getting a DNS error that I'm not sure how to resolve, and whether it's related to my apache configuration. However, apache does not complain or submit an error log on reload.

dns_master_load: /dev/shm/bind/DO/db.foo.com:14: www.foo.com: CNAME and other data
zone foo.com/IN: loading from master file /dev/shm/bind/DO/db.foo.com failed: CNAME and other data
zone foo.com/IN: not loaded due to errors. 

My zone file is the following:

$TTL    1800
@       IN  SOA NS1.nsexample.COM.  hostmaster.foo.com. (
            1378763038 ; last update: 2013-09-09 21:43:58 UTC
            3600 ; refresh
            900 ; retry
            1209600 ; expire
            1800 ; ttl
            )
             IN      NS      NS1.nsexample.COM.
                     NS      NS2.nsexample.COM.
                     NS      NS3.nsexample.COM.
@   IN A    123.456.78.910
www IN A    123.456.78.910
www CNAME   @
ww  CNAME   @
dev IN A    123.456.78.910

Thanks in advance for the help!

Laszlo Valko

You cannot have CNAME and any other record for the same DNS name:

www IN A    123.456.78.910
www CNAME   @

In this case the second line is superfluous, you can delete the CNAME record.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Loading failed error

From Dev

Loading failed error

From Java

Webpack Code Splitting 'Loading chunk failed' error wrong file path

From Dev

unknown error: failed to write prefs file for loading multiple chrome profile

From Dev

Error loading Groovy config file from JAR

From Dev

Getting error in loading json from static file?

From Dev

error in loading a file in MATLAB

From Dev

Scrapy get website with error "DNS lookup failed"

From Dev

OpsCenter Installation error: DNSLookupError: DNS lookup failed

From Dev

Large images (from file) not loading in Picasso, no obvious error seen

From Dev

LibGdx - Error loading json file from asset manager

From Dev

Unbound variable error when loading a procedure from an external file

From Dev

Amazon SNS For Apple - Error loading apple credentials from file

From Dev

Error while loading multiprocessing.manager.dictionary from pickle file

From Dev

R error: could not find function when loading from file

From Dev

Getting error when loading image file from Parse

From Dev

ARKit - Error loading DAE file exported from Maya

From Dev

Loading an Array from a File

From Dev

Loading array from file

From Dev

Loading commands from file

From Dev

JS file loading failed in in oracle apex application

From Java

"Loading failed for the <script>" 404 Error - Svelte

From Dev

Stanford NER Error: Loading distsim lexicon Failed

From Dev

ERROR: lazy loading failed for package ‘plotly’

From Dev

Xdebug Error: "Failed loading xdebug.so: xdebug.so: cannot open shared object file: No such file or directory"

From Dev

Xdebug Error: "Failed loading xdebug.so: xdebug.so: cannot open shared object file: No such file or directory"

From Dev

Can not access kubernetes master from the container of pods according DNS

From Dev

DGESDD Lapack routine loading from numpy failed

From Dev

Error while loading YAML file

Related Related

  1. 1

    Loading failed error

  2. 2

    Loading failed error

  3. 3

    Webpack Code Splitting 'Loading chunk failed' error wrong file path

  4. 4

    unknown error: failed to write prefs file for loading multiple chrome profile

  5. 5

    Error loading Groovy config file from JAR

  6. 6

    Getting error in loading json from static file?

  7. 7

    error in loading a file in MATLAB

  8. 8

    Scrapy get website with error "DNS lookup failed"

  9. 9

    OpsCenter Installation error: DNSLookupError: DNS lookup failed

  10. 10

    Large images (from file) not loading in Picasso, no obvious error seen

  11. 11

    LibGdx - Error loading json file from asset manager

  12. 12

    Unbound variable error when loading a procedure from an external file

  13. 13

    Amazon SNS For Apple - Error loading apple credentials from file

  14. 14

    Error while loading multiprocessing.manager.dictionary from pickle file

  15. 15

    R error: could not find function when loading from file

  16. 16

    Getting error when loading image file from Parse

  17. 17

    ARKit - Error loading DAE file exported from Maya

  18. 18

    Loading an Array from a File

  19. 19

    Loading array from file

  20. 20

    Loading commands from file

  21. 21

    JS file loading failed in in oracle apex application

  22. 22

    "Loading failed for the <script>" 404 Error - Svelte

  23. 23

    Stanford NER Error: Loading distsim lexicon Failed

  24. 24

    ERROR: lazy loading failed for package ‘plotly’

  25. 25

    Xdebug Error: "Failed loading xdebug.so: xdebug.so: cannot open shared object file: No such file or directory"

  26. 26

    Xdebug Error: "Failed loading xdebug.so: xdebug.so: cannot open shared object file: No such file or directory"

  27. 27

    Can not access kubernetes master from the container of pods according DNS

  28. 28

    DGESDD Lapack routine loading from numpy failed

  29. 29

    Error while loading YAML file

HotTag

Archive