DOMAIN pointing to webserver problem.

Discussion in 'Server Operation' started by Sorin, Dec 29, 2009.

  1. Sorin

    Sorin New Member

    hello fellows!
    Look what is the problem and i can't find the solution...
    I have a LAMP installed on my CENTOS server...
    I managed my DNS of my domain inlove.md to my server ip addreess...
    and also I added a virtual host to hhtpd config

    <VirtualHost 92.114.182.239:80>
    ServerName www.inlove.md
    ServerAlias inlove.md
    ServerAdmin [email protected]
    DocumentRoot /var/www/html
    ErrorLog logs/error_log
    TransferLog logs/access_log
    </VirtualHost>

    I waited while the domain zone will be renewed... and there is no ping to inlove.md...
    also the domain is not opening.. so , please help me to solve this pointing trouble, Thx!:confused:
     
  2. falko

    falko Super Moderator Howtoforge Staff

    Please check if the DNS record for www.inlove.md points to the right server:
    Code:
    dig www.inlove.md
     
  3. Sorin

    Sorin New Member

    still the same problem

    it is writing:
    <<>> DIG 9.3.4-P1 <<>> www.inlove.md
    globaloptions: printcmd
    ;; connection timed out; no server could be reached...

    but the DNS at the registrar are my IP adrees from the server.. it seems to be theoretical all right.. but the problem stays the same...

    maybe there is a problem from the server side... in cofiguration?
     
  4. falko

    falko Super Moderator Howtoforge Staff

    There are no nameservers defined for your domain:
    Code:
    mh1:~# dig ns inlove.md
    
    ; <<>> DiG 9.3.4 <<>> ns inlove.md
    ;; global options:  printcmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 8422
    ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
    
    ;; QUESTION SECTION:
    ;inlove.md.                     IN      NS
    
    ;; Query time: 181 msec
    ;; SERVER: 213.133.98.98#53(213.133.98.98)
    ;; WHEN: Thu Dec 31 13:11:39 2009
    ;; MSG SIZE  rcvd: 27
    
    mh1:~#
    Is it a registered domain?
     
  5. Sorin

    Sorin New Member

    I discovered that I have to set a BIND server

    I discovered that I have to set a BIND server
    is it right? the ns records is the ip address of my server
     
  6. falko

    falko Super Moderator Howtoforge Staff

    You can either use the nameservers of your domain registrar, or you set up your own nameservers (e.g. with BIND or MyDNS).
     

Share This Page