- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- sendmail tae not found
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
08-21-2008 09:18 AM
08-21-2008 09:18 AM
/sbin/init.d/sendmail start
/sbin/init.d/sendmail[37]: tae: not found.
sendmail has already been started
What does it mean?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2008 09:25 AM
08-21-2008 09:25 AM
Solutionit appears that the start-up script you have may be corrupted. In mine, that's an "if" test.
alternatively, there may be junk in the directory /etc/rc.config.d that doesn't belong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2008 09:27 AM
08-21-2008 09:27 AM
Re: sendmail tae not found
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2008 12:44 PM
08-21-2008 12:44 PM
Re: sendmail tae not found
. /etc/rc.config
the /etc/rc.config file is ok,
About /etc/rc.config.d directory, how can I know what files souldn't be there?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2008 12:47 PM
08-21-2008 12:47 PM
Re: sendmail tae not found
That question is like "which came first" the chicken or the egg" nobody really knows.
cd /etc/rc.config.d
grep tae *
Just might find a bogus or corrupt file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2008 02:22 PM
08-21-2008 02:22 PM
Re: sendmail tae not found
This kind of error typically means that you have a syntax error in one of the 'rc.config.d' files *or* you have placed something extraneous in the '/etc/rc.config.d' directory.
Verify that your '/etc/rc.config.d' directory only contains appropriate files.
If you look at the script, '/etc/rc.config' you will see that it *is* ok to have backup file copies as long as their names contain [.,~#]. That is, 'netconf.old' is an acceptable backup but 'netconfold' is not.
Verify the contents of this directory by doing:
# for FILE in $(ls /etc/rc.config.d/*)
> do
> ls ${FILE}
> . ${FILE}
> done
This will source (read) every file as if the nomral startup sequence is running. The action will stop if there is any file with syntax errors and the 'ls' will identify the offender. Note the "dot-space-filename" syntax in the above code.
By the way, afterwards, you can also see from a 'ls -ul' which files were not sourced, because they were regarded as backup copies and were skipped.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2008 03:07 PM
08-21-2008 03:07 PM
Re: sendmail tae not found
I found nddconf.bak and other that can't be there...and I remove it.
I don't see the message anymore.
Thanks a lot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2008 03:20 PM
08-21-2008 03:20 PM
Re: sendmail tae not found
> I found nddconf.bak and other that can't be there...and I remove it. I don't see the message anymore. I don't see the message anymore.
If your problem has been solved, please read:
http://forums11.itrc.hp.com/service/forums/helptips.do?#28
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2008 06:29 AM
08-22-2008 06:29 AM
Re: sendmail tae not found
it appears that the start-up script you have may be corrupted. In mine, that's an "if" test.
alternatively, there may be junk in the directory /etc/rc.config.d that doesn't belong
-----------------------------------------
I found nddconf.bak and other file that doesn't be on /etc/rc.config.d, and message doens't appear anymore.