- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- syslog.log
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-14-2001 04:46 AM
02-14-2001 04:46 AM
syslog.log
An example is:
Feb 14 07:41:01 cars1 inetd[948]: lpn2/tcp: bind: Address already in use
Feb 14 07:41:01 cars1 inetd[948]: lnp2/tcp: Service enabled
How can I get this to stop getting these entries in the syslog?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2001 04:53 AM
02-14-2001 04:53 AM
Re: syslog.log
It looks like you have logging for inetd functions enabled. If you don't want these things recording in syslog - you need to turn off a couple things.
1. Edit /etc/inetd.conf remove that -l at the end of the telnet line.
2. Edit /etc/rc.config.d/netdaemons change that line that says export INETD_ARGS="-l" to ARGS=""
Then you can stop and restart inetd
/sbin/init.d/inetd stop
/sbin/init.d/inetd start
Hope this helps/rcw
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2001 05:41 AM
02-14-2001 05:41 AM
Re: syslog.log
It's possible you are trying to start two daemons utilising the same tcp port. Note the service lpn2 uses in /etc/inetd.conf - then check /etc/services for the port number.
Make sure there is not another entry in inetd.conf which uses a service with the same port number.
Hope that helps.
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2001 06:04 AM
02-14-2001 06:04 AM
Re: syslog.log
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2001 06:01 AM
02-15-2001 06:01 AM
Re: syslog.log
RD
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2001 02:20 PM
02-16-2001 02:20 PM
Re: syslog.log
a double entry.