<?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 Making log server in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000216#M75382</link>
    <description>Hi all&lt;BR /&gt;Can I make log server which all client messages are logged separately&lt;BR /&gt;&lt;BR /&gt;One condition is given &lt;BR /&gt;&lt;BR /&gt;1.&lt;BR /&gt;Messeges from all clients must be logged by client's name each at log server&lt;BR /&gt;&lt;BR /&gt;any tips are helpful&lt;BR /&gt;</description>
    <pubDate>Wed, 18 Jun 2003 02:51:37 GMT</pubDate>
    <dc:creator>mw_9</dc:creator>
    <dc:date>2003-06-18T02:51:37Z</dc:date>
    <item>
      <title>Making log server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000216#M75382</link>
      <description>Hi all&lt;BR /&gt;Can I make log server which all client messages are logged separately&lt;BR /&gt;&lt;BR /&gt;One condition is given &lt;BR /&gt;&lt;BR /&gt;1.&lt;BR /&gt;Messeges from all clients must be logged by client's name each at log server&lt;BR /&gt;&lt;BR /&gt;any tips are helpful&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Jun 2003 02:51:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000216#M75382</guid>
      <dc:creator>mw_9</dc:creator>
      <dc:date>2003-06-18T02:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Making log server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000217#M75383</link>
      <description>When yous ay 'log', I take it you mean that you want 'syslog' to send the events to be logged to a given server?&lt;BR /&gt;&lt;BR /&gt;So you've got your client PC's logging events like:&lt;BR /&gt;&lt;BR /&gt;kern.*    @othermachine&lt;BR /&gt;&lt;BR /&gt;(as detailed in 'man syslog.conf').&lt;BR /&gt;&lt;BR /&gt;You'll also have to make 'syslogd' listen for incoming requests.  According to 'man syslogd', the flag you need is '-r'.&lt;BR /&gt;&lt;BR /&gt;Depending on what distribution you are using depends on how to best eanble this feature however.&lt;BR /&gt;&lt;BR /&gt;The simplest way is to modify the startup routine in /etc/rc.d/*/*syslogd (adding the -r flag to the startup routines), however if you are using a RedHat system, you can just modify the line "SYSLOGD_OPTIONS" in "/etc/sysconfig/syslog".&lt;BR /&gt;&lt;BR /&gt;Have fun.</description>
      <pubDate>Wed, 18 Jun 2003 03:12:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000217#M75383</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2003-06-18T03:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Making log server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000218#M75384</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I found syslog-ng is the right candidate for this purporse when I was experimenting on distributed IDS architectures and centralized logging system.&lt;BR /&gt;&lt;BR /&gt;syslog-ng is capable of filtering the incoming syslog data from the syslog clients and decide the destination file depending on the client hostname.&lt;BR /&gt;&lt;BR /&gt;I have some example on it's filtering configuration on syslog-ng central log server,&lt;BR /&gt;&lt;BR /&gt;filter f_client1{ host("client1"); };&lt;BR /&gt;filter f_client2 { host("client2"); };&lt;BR /&gt;&lt;BR /&gt;destination client1 { file /var/log/client1; };&lt;BR /&gt;destination client2 { file /var/log/client2; };&lt;BR /&gt;&lt;BR /&gt;now the syslog messages from client1 will logged to /var/log/client1 and client2 will be logged to /var/log/client2&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;U.SivaKumar&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Jun 2003 04:18:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000218#M75384</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2003-06-18T04:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: Making log server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000219#M75385</link>
      <description>Does 'syslog-ng' you said some kind of utilities linux has?&lt;BR /&gt;&lt;BR /&gt;can you give more details about?</description>
      <pubDate>Wed, 18 Jun 2003 08:24:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000219#M75385</guid>
      <dc:creator>mw_9</dc:creator>
      <dc:date>2003-06-18T08:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: Making log server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000220#M75386</link>
      <description>Please check these links for more information.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.balabit.com/products/syslog_ng/reference/book1.html" target="_blank"&gt;http://www.balabit.com/products/syslog_ng/reference/book1.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.campin.net/syslog-ng/faq.html" target="_blank"&gt;http://www.campin.net/syslog-ng/faq.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;you can download the free software GPL licensed here&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.balabit.com/downloads/syslog-ng/" target="_blank"&gt;http://www.balabit.com/downloads/syslog-ng/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;U.SivaKumar&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Jun 2003 10:31:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000220#M75386</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2003-06-18T10:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: Making log server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000221#M75387</link>
      <description>Dose syslog-ng have to be installed each clients that I wanted to log ?</description>
      <pubDate>Thu, 19 Jun 2003 07:30:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000221#M75387</guid>
      <dc:creator>mw_9</dc:creator>
      <dc:date>2003-06-19T07:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: Making log server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000222#M75388</link>
      <description>Not neccesary.&lt;BR /&gt;&lt;BR /&gt;Only the central log server which you choose should have syslog-ng installed. Disable normal syslogd in this server.&lt;BR /&gt;&lt;BR /&gt;#ntsysv&lt;BR /&gt;&lt;BR /&gt;syslog-ng should be listening for incoming syslog messages.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;U.SivaKumar&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Jun 2003 09:30:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000222#M75388</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2003-06-19T09:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: Making log server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000223#M75389</link>
      <description>Not neccesary.&lt;BR /&gt;&lt;BR /&gt;Only the central log server which you choose should have syslog-ng installed. Disable normal syslogd in this server.&lt;BR /&gt;&lt;BR /&gt;#ntsysv&lt;BR /&gt;&lt;BR /&gt;syslog-ng should be listening for incoming syslog messages.&lt;BR /&gt;&lt;BR /&gt;On all other client edit /etc/syslogd.conf and put this single line if you want to log everything to the central log server.&lt;BR /&gt;&lt;BR /&gt;*.*   @log.mydomain.com&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;U.SivaKumar&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Jun 2003 09:31:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000223#M75389</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2003-06-19T09:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: Making log server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000224#M75390</link>
      <description>watch out for this product if security is a requirement.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://coombs.anu.edu.au/~avalon/nsyslog.html" target="_blank"&gt;http://coombs.anu.edu.au/~avalon/nsyslog.html&lt;/A&gt;</description>
      <pubDate>Thu, 19 Jun 2003 20:24:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000224#M75390</guid>
      <dc:creator>Paddy_1</dc:creator>
      <dc:date>2003-06-19T20:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: Making log server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000225#M75391</link>
      <description>what did I wrong?&lt;BR /&gt;see that attached file</description>
      <pubDate>Fri, 20 Jun 2003 01:10:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000225#M75391</guid>
      <dc:creator>mw_9</dc:creator>
      <dc:date>2003-06-20T01:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: Making log server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000226#M75392</link>
      <description>I can't generate client's named file.&lt;BR /&gt;what's wrong?&lt;BR /&gt;Messeges from all clients are logging default messages file.&lt;BR /&gt;&lt;BR /&gt;what's wrong?</description>
      <pubDate>Fri, 20 Jun 2003 07:03:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000226#M75392</guid>
      <dc:creator>mw_9</dc:creator>
      <dc:date>2003-06-20T07:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: Making log server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000227#M75393</link>
      <description>thank you all your replies..&lt;BR /&gt;Thanks..</description>
      <pubDate>Sat, 21 Jun 2003 02:09:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000227#M75393</guid>
      <dc:creator>mw_9</dc:creator>
      <dc:date>2003-06-21T02:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: Making log server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000228#M75394</link>
      <description>hi ,&lt;BR /&gt;&lt;BR /&gt;is your problem solved ?.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;U.SivaKumar</description>
      <pubDate>Sat, 21 Jun 2003 02:47:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/making-log-server/m-p/3000228#M75394</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2003-06-21T02:47:24Z</dc:date>
    </item>
  </channel>
</rss>

