- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- getting message "unable to qualify my own domain n...
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
01-19-2004 05:37 AM
01-19-2004 05:37 AM
Jan 19 14:18:54 k210 sendmail[29873]: unable to qualify my own domain name (k210) -- using short name
Everything looks to work fine but I want to fix the problem in order to avoid that message.
can anybody helpme
thanks!.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 05:47 AM
01-19-2004 05:47 AM
Solution- the CM setting in the sendmail.cf file containing the correct domain name. This mail actually be point to the file sendmail.cw, which contains the list of domains
- as root, run "mailq -d -v" to see what sendmail is now using for a domain name
- check your resolve.conf file for the correct name resolution order for your location and config syntax
- check your /etc/host file for correct spellings of your domain
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 05:51 AM
01-19-2004 05:51 AM
Re: getting message "unable to qualify my own domain name"
1.1.1.1 hostname hostname.domain.com
Regards,
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 05:52 AM
01-19-2004 05:52 AM
Re: getting message "unable to qualify my own domain name"
dig servername
provides no answer
dig servername.juf.net
does
You can handle short names with /etc/hosts files
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 05:53 AM
01-19-2004 05:53 AM
Re: getting message "unable to qualify my own domain name"
Make sure you have short & FQDN for this host in it's own /etc/hosts file - like:
111.222.111.222 hostname hostname.company.com
As a rule you want the shortname first & the FQDN as the alias
Then make sure the /etc/nsswitch.conf file uses files before DNS.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 10:38 AM
01-19-2004 10:38 AM
Re: getting message "unable to qualify my own domain name"
111.222.111.222 k210 k210
the "mailq -d -v" command reports that the mail is using the right server name.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 10:46 AM
01-19-2004 10:46 AM
Re: getting message "unable to qualify my own domain name"
My domain name was only one word like "k210", I changed to "k210.company.com" and it works!. I haven't received the message any more.
thanks to all, I already submit the point.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2004 10:46 AM
01-19-2004 10:46 AM
Re: getting message "unable to qualify my own domain name"
Look at the following excerpt from sendmail.cf
//
My official domain name or Fully Qualified Domain Name - FQDN (Dj): #
# #
# This is required only if sendmail cannot automatically determine your #
# domain. If you are not using DNS, and the official host name (ie, #
# the first entry in /etc/hosts following your IP address) is not a #
# fully-qualified host name, then sendmail will have difficulty resolving #
# your domain name. You MUST modify the $j macro by replacing .Foo.COM #
# with your actual domain name. If you do not, you will see a warning #
# message in your syslog, that might even get echo'd to your console #
# when sendmail starts up. #
# #
# For example, if you see this warning: #
# #
# WARNING: local host name (sys1) is not qualified; fix $j in config file #
#
//
If you have a domain your /etc/hosts will appear like
111.222.111.222 k210 k210.yourdomain.com
If you don't have a domain, then put a dot "." after the second name like this.
111.222.111.222 k210 k210.
Restart sendmail using /sbin/init.d/sendmail script.
-Sri