- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Can't find server name for address <IP>: Server fa...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2007 11:36 PM
02-04-2007 11:36 PM
Can't find server name for address <IP>: Server failed
I Have a server DNS in LINUX, My server HPUX this not deciding.
ex:
root@dfserv07:/etc# nslookup meddvoserv004
*** Can't find server name for address 10.12.180.1: Server failed
*** Can't find server name for address 10.12.200.4: Server failed
My resolv.conf
search polimed.dom
nameserver 10.12.180.1
nameserver 10.12.200.4
root@dfserv07:/etc# more nsswitch.conf
hosts: dns [NOTFOUND=return UNAVAIL=continue TRYAGAIN=return] files[NOTFOUND=return UNAVAIL=continue TRYAGAIN=return]
hosts: files
services: files
protocols: files
networks: files
rpc: files
netgroup: files
automount: files
Could Help Me ?
Daniel D.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2007 11:42 PM
02-04-2007 11:42 PM
Re: Can't find server name for address <IP>: Server failed
Can you at least ping your DNS server from the HP-UX machine?
What do you have in your /etc/hosts file?
Regards,
Jaime.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2007 11:59 PM
02-04-2007 11:59 PM
Re: Can't find server name for address <IP>: Server failed
A few things I notice:
1) Most resolv.conf files I've come across are of the form:
domain
nameserver
nameserver
...
Notice that you have the 'search' configuration option in place of 'domain'. 'search' is only useful if you want the search path to contain domains other than the local one. Also notice that if you choose to use 'search', the first domain specified must be the local domain.
2) Your nsswitch.conf specifies 'dns' before 'files' for host lookup. Typically, this should be the other way around, so that /etc/hosts is consulted before the DNS server(s).
3) You have the 'hosts' database specified twice in nsswitch.conf. I believe only the second instance's options ('hosts: files') will take effect.
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2007 12:00 AM
02-05-2007 12:00 AM
Re: Can't find server name for address <IP>: Server failed
I ping my machine DNS
root@dfserv07:/etc# ping 10.12.180.1
PING 10.12.180.1: 64 byte packets
64 bytes from 10.12.180.1: icmp_seq=0. time=4. ms
64 bytes from 10.12.180.1: icmp_seq=1. time=3. ms
I need DNS to my dataprotector to function correctly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2007 12:42 AM
02-05-2007 12:42 AM
Re: Can't find server name for address <IP>: Server failed
hosts: files [NOTFOUND=continue UNAVAIL=continue] dns
and delete the duplicate hosts line. Then add all the IP addresses that Dataprotector need to know about (cell server, manager, clients, etc) to /etc/hosts and run nslookup again for each server.
Once that is done, you now have to figure out why your DNS server is broken. The ping indicates that the IP address belongs to a working computer but does not verify DNS function. Use this command:
nsquery hosts meddvoserv004
If the result indicates that has been found, all is well for /etc/hosts. Now change the query to:
nsquery hosts meddvoserv004 "dns"
If the /etc/resolv.conf contains the IP addresses of DNS servers that are blocking your request (or routers that are blocking your HP-UX system), it will fail. Contact your DNS administrator.
Once everything is working, you can do something like this:
nsquery hosts hp.com
and watch as the resolver methods are followed to obtain the (several) hp.com addresses.
Bill Hassell, sysadmin