- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Monitoring inetd
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
10-25-2000 08:46 AM
10-25-2000 08:46 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2000 08:55 AM
10-25-2000 08:55 AM
Re: Monitoring inetd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2000 08:58 AM
10-25-2000 08:58 AM
Re: Monitoring inetd
I'm not sure exactly what you want. the inetd daemon will be visible to 'ps' if you want to make sure its running.
You can start inetd with connection logging enabled. The default is not to do so. See "man inetd" for more information. Hopefully this information helps you.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2000 09:08 AM
10-25-2000 09:08 AM
Re: Monitoring inetd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2000 09:32 AM
10-25-2000 09:32 AM
Re: Monitoring inetd
Why?
Inetd should run independently on each box. It is necessary for basic networking functionality.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2000 09:32 AM
10-25-2000 09:32 AM
Re: Monitoring inetd
You can configure your setup so that if inetd dies - it gets restarted:
INETDRUNNING=`ps -ef | grep -c [i]netd`
if [ ! $INETDRUNNING ]
then
/sbin/rc2.d/S500inetd start
fi
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2000 09:47 AM
10-25-2000 09:47 AM
SolutionAs Alan asked, are you talking about MC/ServiceGuard 'packages'? If so, I agree with him, inetd is not something that you want to start/stop/reconfigure in a failover. A similar thread on this issue can be found here:
http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0x726168c57f64d4118fee0090279cd0f9,00.html
Does this help?
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2000 12:32 AM
10-26-2000 12:32 AM
Re: Monitoring inetd
Roberto