<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Syslog and inetd messages. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448376#M10124</link>
    <description>in /etc/syslog.conf(tab delimited):&lt;BR /&gt;&lt;BR /&gt;*.info;inetd.none /var/adm/syslog/syslog.log&lt;BR /&gt;inetd.info        /var/adm/syslog/inetd.log</description>
    <pubDate>Wed, 27 Sep 2000 16:06:21 GMT</pubDate>
    <dc:creator>Alan Riggs</dc:creator>
    <dc:date>2000-09-27T16:06:21Z</dc:date>
    <item>
      <title>Syslog and inetd messages.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448373#M10121</link>
      <description>Our syslog which we use regularly in problem solving is full of "Connection Attempt" messages logged by inetd, making the task of problem solving more painful than it needs to be. I cant remove the informational level daemon messages from syslog without losing our service guard messages aswell. We can't turn off inetd logging without compromising our security. Is there a way of configuring inetd to log to somewhere other than syslogd without turning off logging completely?</description>
      <pubDate>Wed, 27 Sep 2000 15:39:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448373#M10121</guid>
      <dc:creator>Ian Killer</dc:creator>
      <dc:date>2000-09-27T15:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Syslog and inetd messages.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448374#M10122</link>
      <description>man syslogd&lt;BR /&gt;You can add a line in /etc/syslog.conf file for another information or error log file</description>
      <pubDate>Wed, 27 Sep 2000 15:58:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448374#M10122</guid>
      <dc:creator>CHRIS_ANORUO</dc:creator>
      <dc:date>2000-09-27T15:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Syslog and inetd messages.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448375#M10123</link>
      <description>It looks like this is not an option with inetd as it is today.&lt;BR /&gt;&lt;BR /&gt;You could run some kind of log analysis tool that would filter these messages from your syslog - like swatch or the like.&lt;BR /&gt;&lt;BR /&gt;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.</description>
      <pubDate>Wed, 27 Sep 2000 15:59:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448375#M10123</guid>
      <dc:creator>Lasse Knudsen</dc:creator>
      <dc:date>2000-09-27T15:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: Syslog and inetd messages.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448376#M10124</link>
      <description>in /etc/syslog.conf(tab delimited):&lt;BR /&gt;&lt;BR /&gt;*.info;inetd.none /var/adm/syslog/syslog.log&lt;BR /&gt;inetd.info        /var/adm/syslog/inetd.log</description>
      <pubDate>Wed, 27 Sep 2000 16:06:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448376#M10124</guid>
      <dc:creator>Alan Riggs</dc:creator>
      <dc:date>2000-09-27T16:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: Syslog and inetd messages.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448377#M10125</link>
      <description>Hi Ian,&lt;BR /&gt;&lt;BR /&gt;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:&lt;BR /&gt;&lt;BR /&gt;$ cat /etc/syslog.conf&lt;BR /&gt;# @(#) $Revision: 74.1 $&lt;BR /&gt;#&lt;BR /&gt;# syslogd configuration file.&lt;BR /&gt;#&lt;BR /&gt;# See syslogd(1M) for information about the format of this file.&lt;BR /&gt;#&lt;BR /&gt;mail.debug              /var/adm/syslog/mail.log&lt;BR /&gt;daemon.debug            /var/adm/syslog/daemon.log&lt;BR /&gt;*.info;mail.none;daemon.none        /var/adm/syslog/syslog.log&lt;BR /&gt;*.alert                 /dev/console&lt;BR /&gt;*.alert                 root&lt;BR /&gt;*.emerg                 *&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This should effectively re-route all messages from the daemon facility of level debug or higher to /var/adm/syslog/syslog.daemon.&lt;BR /&gt;&lt;BR /&gt;Of course, you should test this first to ensure it does what you want it to, and that you don't lose any messages.&lt;BR /&gt;&lt;BR /&gt;Bruce Laughlin&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Sep 2000 16:10:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448377#M10125</guid>
      <dc:creator>Bruce Laughlin</dc:creator>
      <dc:date>2000-09-27T16:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Syslog and inetd messages.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448378#M10126</link>
      <description>Chris, Alan R., Bruce,&lt;BR /&gt;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.</description>
      <pubDate>Thu, 28 Sep 2000 08:47:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448378#M10126</guid>
      <dc:creator>Ian Killer</dc:creator>
      <dc:date>2000-09-28T08:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Syslog and inetd messages.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448379#M10127</link>
      <description>Alan S.,&lt;BR /&gt;This is what I suspected. I'm trying to pick the minds of those that know undocumented features. &lt;BR /&gt;Cheers.</description>
      <pubDate>Thu, 28 Sep 2000 08:49:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448379#M10127</guid>
      <dc:creator>Ian Killer</dc:creator>
      <dc:date>2000-09-28T08:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Syslog and inetd messages.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448380#M10128</link>
      <description>The inetd.info option caused syslogd to error: unknown facility.&lt;BR /&gt;The daemon.debug experiment left the connection messages in the syslog.log.&lt;BR /&gt;Bummer.</description>
      <pubDate>Thu, 28 Sep 2000 09:05:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448380#M10128</guid>
      <dc:creator>Ian Killer</dc:creator>
      <dc:date>2000-09-28T09:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: Syslog and inetd messages.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448381#M10129</link>
      <description>The daemon.debug to daemon.log, *.info and daemon.none option to syslog took all the daemon messages including service guard, LVM and named messages to daemon log. Double bummer.&lt;BR /&gt;&lt;BR /&gt;Filter script it will have to be.&lt;BR /&gt;&lt;BR /&gt;Thanks for all your help friends. Hope I can do the same for you sometime.&lt;BR /&gt;&lt;BR /&gt;Ian</description>
      <pubDate>Thu, 28 Sep 2000 09:30:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syslog-and-inetd-messages/m-p/2448381#M10129</guid>
      <dc:creator>Ian Killer</dc:creator>
      <dc:date>2000-09-28T09:30:54Z</dc:date>
    </item>
  </channel>
</rss>

