<?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: [help]question about the syslogd[help] in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/help-question-about-the-syslogd-help/m-p/2958203#M117658</link>
    <description>thanks to all of you!&lt;BR /&gt;maybe the solution is just add a script to cut the log to multiple logs. thank you again! 8-)</description>
    <pubDate>Fri, 25 Apr 2003 00:43:43 GMT</pubDate>
    <dc:creator>zhangr_2</dc:creator>
    <dc:date>2003-04-25T00:43:43Z</dc:date>
    <item>
      <title>[help]question about the syslogd[help]</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-question-about-the-syslogd-help/m-p/2958199#M117654</link>
      <description>I have two server named A-server and LOG-server.I install a tcp-wrapper on A-server and I want the tcp-wrapper log sent to LOG-server automatically.so I add an entry in A-server's /etc/syslog.conf:&lt;BR /&gt;local3.info   @LOG-server&lt;BR /&gt;after restart the syslogd,It works.but the A-server sent the tcp-wrapper's log to LOG-server's /var/adm/syslog/syslog.log ,but I wanna use a specified log file to store the tcp-wrapper's log(for example /var/adm/syslog/A-server.tcpd.log)&lt;BR /&gt;so what should I do to implement it?thanks!&lt;BR /&gt;&lt;BR /&gt;BTW:I already  have a way to do this job but not good.&lt;BR /&gt;A-server in /etc/syslog.conf:&lt;BR /&gt;local3.info   @LOG-server&lt;BR /&gt;LOG-server in /etc/syslog.conf:&lt;BR /&gt;local3.info   /var/adm/syslog/A-server.tcpd.log&lt;BR /&gt;and it work.but the problem is The system only provide 8 facility (local0 to local7),and I have of course more the 8 server to sent logs.&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Apr 2003 06:08:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-question-about-the-syslogd-help/m-p/2958199#M117654</guid>
      <dc:creator>zhangr_2</dc:creator>
      <dc:date>2003-04-24T06:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: [help]question about the syslogd[help]</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-question-about-the-syslogd-help/m-p/2958200#M117655</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I think if you have more than 8 servers, but only can use local0-7 you'll have to put them all in one log, then use grep to pull the data out for the specific hostname that you want.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;Darren.</description>
      <pubDate>Thu, 24 Apr 2003 08:18:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-question-about-the-syslogd-help/m-p/2958200#M117655</guid>
      <dc:creator>Darren Prior</dc:creator>
      <dc:date>2003-04-24T08:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: [help]question about the syslogd[help]</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-question-about-the-syslogd-help/m-p/2958201#M117656</link>
      <description>if server A is your log server.&lt;BR /&gt;do this in its /etc/syslog.conf file&lt;BR /&gt;&lt;BR /&gt;*.info;mail.none;local3.none /var/adm/syslog/syslog.log&lt;BR /&gt;&lt;BR /&gt;local3.info   /var/adm/syslog/A-server.tcpd.log&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;on server B all you have to do in its /etc/syslog.conf is&lt;BR /&gt;&lt;BR /&gt;*.info;mail.none @LOG-server&lt;BR /&gt;&lt;BR /&gt;and if you want a local copy&lt;BR /&gt;then add &lt;BR /&gt;local3.info /var.....&lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/syslogd stop; /sbin/init.d/syslogd start&lt;BR /&gt;&lt;BR /&gt;peace&lt;BR /&gt;Donny&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Apr 2003 21:34:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-question-about-the-syslogd-help/m-p/2958201#M117656</guid>
      <dc:creator>Donny Jekels</dc:creator>
      <dc:date>2003-04-24T21:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: [help]question about the syslogd[help]</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-question-about-the-syslogd-help/m-p/2958202#M117657</link>
      <description>as for the mutliple servers you can write a perl script to tail -f the the log file&lt;BR /&gt;all day and sort by server name then route the logs to respective logs for each server.&lt;BR /&gt;&lt;BR /&gt;or you can write a simple grep script to run once a day and chop up the log file and creat mutliple log files per server.&lt;BR /&gt;&lt;BR /&gt;my 2 cents.</description>
      <pubDate>Thu, 24 Apr 2003 21:38:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-question-about-the-syslogd-help/m-p/2958202#M117657</guid>
      <dc:creator>Donny Jekels</dc:creator>
      <dc:date>2003-04-24T21:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: [help]question about the syslogd[help]</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-question-about-the-syslogd-help/m-p/2958203#M117658</link>
      <description>thanks to all of you!&lt;BR /&gt;maybe the solution is just add a script to cut the log to multiple logs. thank you again! 8-)</description>
      <pubDate>Fri, 25 Apr 2003 00:43:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-question-about-the-syslogd-help/m-p/2958203#M117658</guid>
      <dc:creator>zhangr_2</dc:creator>
      <dc:date>2003-04-25T00:43:43Z</dc:date>
    </item>
  </channel>
</rss>

