DNS Server not working. Start Time "Not Available"

I lost power to my server last night in a power outage.
Today the DNS Server doesn't seem to be working. I verified that my server's IP is the primary name server on the clients, however all lookups are going to the secondary (public) name server and therefore giving the public IP address for LAN services.
To test it, I typed in Terminal (both on a client machine and on the server itself) "nslookup [myinternaldomain.com] [mydnsserverip]" and get ";; connection timed out; no servers could be reached"
When I load up Server Admin, I see that the DNS service is running but for Start Time it says "Not Available".
Tried stopping and starting the service.

Thanks for that link. It looks about at my level so I'll have a read tonight. I am on 10.6.8
Here's what I got back from the command you suggested (looks like all of these are just ports starting with "53" - confirming that DNS is not running?)
mDNSRespo    36 _mdnsresponder    8u  IPv4 0xffffff800fe25980      0t0    UDP *:5353
mDNSRespo    36 _mdnsresponder    9u  IPv6 0xffffff800fe25840      0t0    UDP *:5353
mDNSRespo    36 _mdnsresponder   50u  IPv4 0xffffff8012030c00      0t0    UDP *:53697
mDNSRespo    36 _mdnsresponder   51u  IPv6 0xffffff8012030340      0t0    UDP *:53697
Python       50        _jabber    4u  IPv4 0xffffff8012cc4da8      0t0    TCP localhost:49277->localhost:5347 (ESTABLISHED)
Python       75        _jabber    3u  IPv4 0xffffff8010120a08      0t0    TCP localhost:49177->localhost:5347 (ESTABLISHED)
resolver    406        _jabber    4u  IPv4 0xffffff8012970418      0t0    TCP localhost:49172->localhost:5347 (ESTABLISHED)
sm          407        _jabber    5u  IPv4 0xffffff80129727b8      0t0    TCP localhost:49170->localhost:5347 (ESTABLISHED)
router      408        _jabber    4u  IPv4 0xffffff80127621c8      0t0    TCP localhost:5347 (LISTEN)
router      408        _jabber    5u  IPv4 0xffffff80127615e8      0t0    TCP localhost:5347->localhost:49166 (ESTABLISHED)
router      408        _jabber    6u  IPv4 0xffffff8012760a08      0t0    TCP localhost:5347->localhost:49167 (ESTABLISHED)
router      408        _jabber    7u  IPv4 0xffffff80127627b8      0t0    TCP localhost:5347->localhost:49168 (ESTABLISHED)
router      408        _jabber    8u  IPv4 0xffffff80129721c8      0t0    TCP localhost:5347->localhost:49170 (ESTABLISHED)
router      408        _jabber    9u  IPv4 0xffffff8012abfda8      0t0    TCP localhost:5347->localhost:49172 (ESTABLISHED)
router      408        _jabber   10u  IPv4 0xffffff8012abe5e8      0t0    TCP localhost:5347->localhost:49177 (ESTABLISHED)
router      408        _jabber   11u  IPv4 0xffffff8012cc47b8      0t0    TCP localhost:5347->localhost:49277 (ESTABLISHED)
c2s         409        _jabber    4u  IPv4 0xffffff8012760ff8      0t0    TCP localhost:49167->localhost:5347 (ESTABLISHED)
mu-confer   410        _jabber    6u  IPv4 0xffffff8011d14a08      0t0    TCP localhost:49168->localhost:5347 (ESTABLISHED)
s2s         411        _jabber    4u  IPv4 0xffffff8012761bd8      0t0    TCP localhost:49166->localhost:5347 (ESTABLISHED)

Similar Messages

  • DNS server not available/not responding

    Hi,
    I have 6-7 windows 7 system 2 of them system getting error while access anything 
    not always 2-3 time within a days.
    DNS server not available
    DNS server not responding
    Please help me
    Thanks,
    Madhukar

    Hello,
    please post an unedited ipconfig /all from the problem machine and the DC/DNS server they use on the NIC.
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • Linux RMI lookup takes too long when DNS is not available

    I am running Java 6 on Linux and ran into the following problem (please bear with me, there is a lot of background info before the actual question). I have a Java program that uses RMI for IPC. The server binds to localhost and clients lookup on localhost. The following are code snippets for my server and client.
    // Server binding code
    registry = LocateRegistry.createRegistry(port);
    registry.rebind("SERVICE", new ServiceImpl());
    // Client lookup code
    Naming.lookup("rmi://localhost:" + port + "/SERVICE");As long as DNS works, this code runs just fine. It takes ~0.3s for the server to bind and ~0.4s for the client to lookup. If DNS is not available, it takes ~40s for the server to bind and ~60s for the client to lookup! The times for lookup do not change if I use "127.0.0.1" instead of "localhost".
    I have localhost defined in my /etc/hosts file and my /etc/nsswitch.conf file specifies that host lookups should use files before nameservers. By commenting out the localhost value in the /etc/hosts file, I have determined that eventually the value in /etc/hosts is used if needed (the server bind fails if DNS is not available and localhost is commented out).
    If the network goes down, someone messes up the /etc/resolv.conf file, or our nameservers go down, RMI binds and lookups for something as easy to resolve as localhost takes way too long.
    So my question boils down to: Is there any way I can bind and lookup RMI servers without using DNS or by using DNS after /etc/hosts lookup fails?

    I turned on logging. You can see here that when DNS is working everything runs fine.
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINER: RMI TCP Connection(10)-127.0.0.1: (port 1234) client using localhost:0
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.tcp.TCPTransport handleMessages
    FINE: RMI TCP Connection(10)-127.0.0.1: (port 1234) op = 80
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.StreamRemoteCall getInputStream
    FINER: RMI TCP Connection(10)-127.0.0.1: getting input stream
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.Transport serviceCall
    FINER: RMI TCP Connection(10)-127.0.0.1: call dispatcher
    Nov 19, 2007 5:14:12 PM sun.rmi.server.UnicastServerRef logCall
    FINER: RMI TCP Connection(10)-127.0.0.1: [127.0.0.1: sun.rmi.registry.RegistryImpl[0:0:0, 0]: java.rmi.Remote lookup(java.lang.String)]
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.StreamRemoteCall getOutputStream
    FINER: RMI TCP Connection(10)-127.0.0.1: getting output stream
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINE: RMI TCP Connection(11)-127.0.0.1: accepted socket from [127.0.0.1:37084]When DNS is not working, there is a 15 second timeout and 5 seconds to reconnect.
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINE: RMI TCP Connection(12)-127.0.0.1: accepted socket from [127.0.0.1:57328]
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINER: RMI TCP Connection(12)-127.0.0.1: (port 1234) suggesting 127.0.0.1:57328
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINER: RMI TCP Connection(12)-127.0.0.1: (port 1234) client using localhost:0
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.tcp.TCPTransport handleMessages
    FINE: RMI TCP Connection(12)-127.0.0.1: (port 1234) op = 80
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.StreamRemoteCall getInputStream
    FINER: RMI TCP Connection(12)-127.0.0.1: getting input stream
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.Transport serviceCall
    FINER: RMI TCP Connection(12)-127.0.0.1: call dispatcher
    Nov 19, 2007 5:16:03 PM sun.rmi.server.UnicastServerRef logCall
    FINER: RMI TCP Connection(12)-127.0.0.1: [127.0.0.1: sun.rmi.registry.RegistryImpl[0:0:0, 0]: java.rmi.Remote lookup(java.lang.String)]
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.StreamRemoteCall getOutputStream
    FINER: RMI TCP Connection(12)-127.0.0.1: getting output stream
    Nov 19, 2007 5:16:18 PM sun.rmi.transport.tcp.TCPTransport handleMessages
    FINE: RMI TCP Connection(12)-127.0.0.1: (port 1234) connection closed
    Nov 19, 2007 5:16:18 PM sun.rmi.transport.tcp.TCPConnection close
    FINE: RMI TCP Connection(12)-127.0.0.1: close connection
    Nov 19, 2007 5:16:23 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINE: RMI TCP Connection(13)-127.0.0.1: accepted socket from [127.0.0.1:37087]I tried specifying different timeout values using different RMI properties. Nothing seems to affect it except setting sun.rmi.transport.tcp.readTimeout to a value less than 15 seconds (which is not practical).
    Any ideas why getting the output stream would timeout?

  • "map server not available" message after "rerouting" is initiated

    Two mornings in a row i've had the same problem with Maps at around 5 or 6 am EST.  I set a location at the house (where I have wifi service) and start a route to that location.  Then, once I'm driving, I deliberately go off-route.  my New Ipad screen says "rerouting" but it hangs on that and never gives me a new route. From then on, while driving, anything I do with Maps produces a message something like this "directions not available -- cannot access map server at this time"
    Once I get back in the house, however, I'm able to initiate a new route and start over.  I can think of several possibilities: (1) the rerouting process causes everything to hang up somehow, (2) the servers are actually down for maintenance or whatever, which I doubt, or (3) my ipad communicates fine with the server through wifi at home but is not able to access it properly out on the road.  I'm in Atlanta and I believe (although I'm not certain} that the upper left hand corner of ipad says "LTE".  (My Roadmate app still works fine, although I realize the two have nothing to do with each other.)  Anyone have any similar experience?

    Same problem with iPhone 5 warranty replacement. works on wifi and 3G (turning LTE off). does not work on LTE. Not a problem with Verizon location or reception because the same problem occurs on the east coast, in the mid-west, and in Nevada.
    Maps do not load and direction requests end up in 'map server not available'.

  • Tried to update to IOS6 and now my ipad is trying to restore -- getting error "activation server not available" help!  Have I lost all my video files?

    I was trying to do a simple udate of the ios software.  I connected to ITunes and the Ipad screen popped up saying there was an update available.  I clicked on the update and it started updating and also there was a message saying it was backing up.  But then I got a message to click here to complete the update -- with a restore.  I did that and now my IPad is n ot woking at all -- I get the initial startup screen and a message that says "your ipad cannot be activated because the activation server is not available"  I've tried connecting to itunes and get the same message -- server not available.  The devices menu option is grayed out so I cant sync, backup,, restore nothing.... HELP! please!  I only wanted to do a simple update -- now I think I've lost all my pictures and video files -- is there a way to get them back??

    Try restarting everything and then try to sync or reactivate. Quit iTunes, reboot your computer, reboot your iPad and then try again.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Just resolved Back to my Mac issue called Apple Suppport in the UK and they were really helpful if the error DNS server not responding the problem is with Apple server not your server ( I had tried to reboot by router, restart my laptop etc.

    I was having problem with my Back to my Mac as message was saying DNS Server not responding . I tried to turn my WIFI off, then my router  to no avail. Decided to call Apple Support line in the UK . I got a call back immediatly and great support.  The advisor took over my screen and we check that my laptop was synchronising   with I phots and it was.  The adviser also told that when the message DNS server is not responding next to Back to my Mac is has to do with Apple Server not mine , router etc... Hope this save others some time! Rather than spending time truining on and off changing IP address etc...

    Thanks for your thorough post. I too need to use BTMM on almost a daily basis for my job, and it has fallen short countlness times. I too have taken great pains to check all of the typical trouble shooting steps within iCloud and in the Apple keychain on each Mac etc, but after the latest rounds of system updates from Apple a few weeks ago to Mountain Lion, BTMM on one of my Macs is completely broken and unusable. I would concur that if you need remote access for "real" mission critical use, just bite the bullet and pay for a service like LogMeIn. You won't regret it and you will get real software support.

  • I am getting "dns server not responding"

    I am staying in a hotel and my 3gs iphones keep getting "dns server not responding"  my computers work fine in my room.  My iphones don't but if I walk out in the hallway the iphones work fine. Help?

    Found what was the problem on my configuration.
    Since NLB VIP did not respond when traffic was going from other networks (Internet  included) i had to reconfigure NLB from unicast to multicast. Then thing started to work but i had DNS resolution error.
    Solution:
    A BUG! When you change NLB cluster type, ipv6 that is configured on it gets removed so you have to enter it again. That's the same IPV6 IP under Infrastructure servers - DNS that ends with :3333::1 for your .domain.local

  • HT4061 im not able to activate my iphone 3gs after upgrading to ios6, saying server not available, what i can do

    im not able to activate my iphone 3gs after upgrading to ios6, saying server not available try later. im not able to make my phone work, not able to bring serial # im in guatemala what i can do?

    Activation issues are almost always the result of a device that has been hacked or jailbroken.
    If this is the case, no support can be provided here.

  • VERTEX RFC server not available

    Hi we are using vertex on crm 6.
    we have ocnfigured vertex and when i m creating order, im getting error VERTEX RFC server not available.. in crmd_order tcode
    how to debug the vertex RFC calls? where can this error be raised. how to debug?? is there any way?

    Yes, SM59 connection is working fine.
    Basically i have checked hte SM53 use exit logs and it is showing exception thrown
    The Java user exit is throwing exception while calling RFC: RFC_CALCULATE_TAXES_DOC as tphost missing and RFC_INVALID_PARAMETER(19) in the SM53 logs.
    The java user exit: com.sap.taxes.taxCall.ExternalTaxCalculationRFC is where it is calling above RFC and when it is doing function.execute it is throwing this exception.
    i have checked the parameters.... user exit is sending all of them...
    any thoughts...

  • TS3694 Update server not available?

    iOS: Resolving update.
    I got an Error 1602 message
    When trying to resolve a got a nother message that stated:
    Update server not available.
    I have tried repeated times to reconnect but not go.
    My 3GS phone will not restore when connecting to my itunes.

    Thanks for the response.  Unfortunately, the 'Sign in or activation errors' link did not yield any help.  I tried all of the suggestions with no luck.  I found on another site that this COULD happen as a result of certain wireless issues.  I WAS able to install AND activate the product with no problem.  Registration went without problem.  Just when I went to Help and Check for Updates that it puts up the 'Update Server Not Available'.  Any other suggestions would really be appreciated.  Thanks again.

  • Map server not available ipad

    map server not available ipad

    Same problem with iPhone 5 warranty replacement. works on wifi and 3G (turning LTE off). does not work on LTE. Not a problem with Verizon location or reception because the same problem occurs on the east coast, in the mid-west, and in Nevada.
    Maps do not load and direction requests end up in 'map server not available'.

  • ADR server not available

    As a school district self servicing provider. I run an Apple Diagnostic server and have for some time. Now, I am getting a red band that tells me "ADR server not available". I have verified my login info is correct and allows me to login to the Apple credentials management site and this site. The log doesn't really show any errors.  Is there something else I should look for ?

    I realize this is an older thread, but I happened upon it when searching for an answer. I noticed that my MRI results weren't getting uploaded to Apple.  I also had the giant red bar across the screen saying ADR Server Not Available.
    My problem was that I had updated my password for GSX recently and had not put the new password into the settings of the dianostic Gateway.  As soon as I updated the password I was able to authenticate and my problems dissapeared.

  • Mac Os X lion Profile server not available

    My Profile Manger appears to start but when I attempt to view the 'Profile Manager' web page to setup devices i have an error "Profile Server Not Available... Please wait a moment and try again'
    In the system log I have the following error message repeated over and over agin....:
    ruby [11504]: Unable to create ProfileManger log file at 'var/log/devicemgr/profilemanager.log' (No such file or directory)
    Is there any solution in the following issue.
    Please help as soon as possible

    Have tried many of the fixes for web services problems that I have found here, and so far nothing resolves this.  I also followed apple's instructions for returning web services to default, and still same problem.  Also tried copying default apache files from clean install, resetting web services... and no luck. 

  • DNS server not responding on HP Pavilionp7​-1012 desktop

    When online I`m constantly having to refresh web connection, sometimes it works ,sometimes not. Only message I get is Dns server not reponding. ISP techs are worthless.

    Hi
    Please find the links given below might help you to fix your issue.
    Video Link
    Web Link
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • 'Profile Server Not Available' error when trying to access Profile Manager

    Hello all,
    I'm totally, totally new to OS X Server, but I have a class full of new iMac's and MacBook's that I want to be able to manage all in one go. Don't really mind about File Sharing, access from anywhere in the world etc. but I just want to be able to push updates to all of them at once as well as manage some default settings for them all.
    I've set up most of what I can see I need to do in OS X Server such as the server itself as a .local, Profile Manager, Websites, VPN, Open Directory and Software Update, but when I try to access my .local through any browser, I get the main screen, but get an error page when I try to go into Profile Manager that says 'Profile Server Not Available. Please wait a moment and try again.'
    Can anyone suggest where they think I might be going wrong or need to do? I can give more information or screenshots if needed, juts let me know. Any help super appreciated
    Yours,
    Elliot

    Hey,
    Sorry, because I'm so new I don't quite get what you mean. A little more information is I'm using my MacBook which is connected to the same WiFi network as the other Mac's. What do you mean by the FQDN?
    I'm able to type in the IP address etc. on any other of the Mac's and it loads the 'Welcome to OS X Server' page, it's just when I select Profile Manager, I get the error. Thanks for getting back though, appreciated the quick help.. and I'm still super stuck. I've got a whole day on it today ha.
    Elliot

  • RPC Server not Available error when using Windows Fax & Scan under Windows 7

    RPC Server not Available error when using Windows Fax & Scan under Windows 7

    Hi,
    On current situation, please remove the old fax account and re-add a new fax account in Windows Fax and Scan, then check if this issue sill exist. For more details, please refer to following similar thread and artilces.
    RPC Server not Available error when using Windows Fax & Scan
    under Windows
    The local fax account is inaccessible after you rename a Windows Vista-based computer
    Cannot send fax from Windows Vista/Windows 7 PC with “RPC Server not Available” error message
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please
    make sure that you completely understand the risk before retrieving any suggestions from the above link.
    If any update, please feel free to let me know.
    Best regards,
    Justin Gu
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for

  • Tns-12560 protocol adapter error linux

    I m running two independent oracle 11g on red hat 5 in vmware workstation 7 which is sitting on window xp where i m running 10g. I was facing a lot of networking when using tnsping. during my search i found that SUlinux and firewall was on which i tu

  • Any smaple reports in Sales, purchase, Inventory and Finance

    Hi, Can any one assist me with sample reports on the following  finance. Thanks, Biren Bose +65-8426 9304

  • Multiple Phone numbers for Multiple addresses

    Hi Folks, We have a requirement to build a solution for the following : Every Business partner may have multiple addresses, and each address may have multiple phone numbers !! We already have a qualified lookup table to house the multiple addresses b

  • WE02 transaction

    Hi All, My webapplication server contains dual stack. I have a JAVA Webdynpro application which is using java api to generate and send the IDocs. I Idocs generated from Java API is being sent to a External R3 system which is configured in portal. Sin

  • How to download video to computer

    How do I download video from my iphone to my computer?