- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Syslog and inetd messages.
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
09-27-2000 08:39 AM
09-27-2000 08:39 AM
Syslog and inetd messages.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 08:58 AM
09-27-2000 08:58 AM
Re: Syslog and inetd messages.
You can add a line in /etc/syslog.conf file for another information or error log file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 08:59 AM
09-27-2000 08:59 AM
Re: Syslog and inetd messages.
You could run some kind of log analysis tool that would filter these messages from your syslog - like swatch or the like.
Maybe you need to look for an inetd replacement - there are several out there - whether they function under UX is another matter - have you tried xinetd, rlinetd, or g2s - the latter seems promising.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 09:06 AM
09-27-2000 09:06 AM
Re: Syslog and inetd messages.
*.info;inetd.none /var/adm/syslog/syslog.log
inetd.info /var/adm/syslog/inetd.log
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2000 09:10 AM
09-27-2000 09:10 AM
Re: Syslog and inetd messages.
Perhaps you can experiment with something like the following in your syslog.conf file. Note that I added an extra line after the mail.debug line:
$ cat /etc/syslog.conf
# @(#) $Revision: 74.1 $
#
# syslogd configuration file.
#
# See syslogd(1M) for information about the format of this file.
#
mail.debug /var/adm/syslog/mail.log
daemon.debug /var/adm/syslog/daemon.log
*.info;mail.none;daemon.none /var/adm/syslog/syslog.log
*.alert /dev/console
*.alert root
*.emerg *
This should effectively re-route all messages from the daemon facility of level debug or higher to /var/adm/syslog/syslog.daemon.
Of course, you should test this first to ensure it does what you want it to, and that you don't lose any messages.
Bruce Laughlin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2000 01:47 AM
09-28-2000 01:47 AM
Re: Syslog and inetd messages.
We tried creating another daemon facility log file, for informational messages, but it takes the serviceguard info messages with it. I'll try the suggestion of an inetd.info line. The syslog.conf file separates facilities and not specific daemons according to the man pages, but I 'll let you know what happens. I'll try the debug option also. Cheers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2000 01:49 AM
09-28-2000 01:49 AM
Re: Syslog and inetd messages.
This is what I suspected. I'm trying to pick the minds of those that know undocumented features.
Cheers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2000 02:05 AM
09-28-2000 02:05 AM
Re: Syslog and inetd messages.
The daemon.debug experiment left the connection messages in the syslog.log.
Bummer.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2000 02:30 AM
09-28-2000 02:30 AM
Re: Syslog and inetd messages.
Filter script it will have to be.
Thanks for all your help friends. Hope I can do the same for you sometime.
Ian