- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- sendmail - unable to qualify my own domain name
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
Discussions
Discussions
Discussions
Forums
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
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
тАО04-11-2006 07:34 PM
тАО04-11-2006 07:34 PM
Apr 11 20:02:30 ftp1 sendmail[1535]: unable to qualify my own domain name (ftp1) -- using short name
What does this mean and why does it happen?
Cheers
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 07:50 PM
тАО04-11-2006 07:50 PM
Solution2. Also check whether DNS is being used:
# ls -l /etc/resolv.conf
If this file is not present, DNS is disabled.
3. Check /etc for the file nsswitch.conf:
# ls -l /etc/nsswitch.conf
If it is not there, copy it into /etc from:
/usr/newconfig/etc/nsswitch.conf
4. Edit the nsswitch.conf file to remove any reference to DNS. The host
lookup line should be simply:
hosts: files
NOTE: If NIS is used, DNS should be removed but NIS left in place. For example:
hosts: nis files
services: nis files
protocols: nis files
networks: nis files
rpc: nis files
netgroup: nis files
5. Edit the /etc/hosts file and add an alias, for example:
123.45.6.78 uxhost uxhost.
The alias is the hostname with a trailing dot - this is important: the dot
represents a place holder for a domain name.
6. Edit /etc/mail/sendmail.cf
Look for the following lines:
# my official domain name
# ... define this only if sendmail cannot automatically determine your domain
#Dj$w.Foo.COM
Uncomment the Dj line and remove the Foo.COM (but leave the dot after the w):
Dj$w.
7. Stop and re-start sendmail:
# /sbin/init.d/sendmail stop
# /sbin/init.d/sendmail start
# tail -20 /var/adm/syslog/mail.log
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 07:52 PM
тАО04-11-2006 07:52 PM
Re: sendmail - unable to qualify my own domain name
Perhaps, you need to put FQDN /etc/hosts file and try one more time. Also, check /etc/resolv.conf and /etc/nsswitch.conf
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 07:55 PM
тАО04-11-2006 07:55 PM
Re: sendmail - unable to qualify my own domain name
have you checked your /etc/hosts file for the line starting
127.0.0.1 fullname shortname
e.g.
127.0.0.1 test.yahoo.com fred
Then restart your sendmail daemon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 08:10 PM
тАО04-11-2006 08:10 PM
Re: sendmail - unable to qualify my own domain name
I have changed the thread title.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 08:25 PM
тАО04-11-2006 08:25 PM
Re: sendmail - unable to qualify my own domain name
check /etc/hosts file have fully qualified name .eg:
112.1.143.120 apps.hp.com apps
Also check /etc/nsswitch.conf
eg:
hosts: files dns [NOTFOUND=return]
this line will look for /etc/hosts then DNS for name resolution.
also check /etc/resolv.conf and confirm DNS server name and domain name is correct
eg:
domain hp.com
nameserver domain qu.edu.qa
nameserver 122.167.43.20
-sysadm-