Difference between revisions of "Syslog-ng"

From PostgreSQL_wiki
Jump to: navigation, search
(Client configuratie)
(syslog-ng client)
Line 13: Line 13:
 
== Client configuratie ==
 
== Client configuratie ==
 
=== syslog-ng client ===
 
=== syslog-ng client ===
  +
<pre>
  +
source s_all {
  +
unix-stream("/dev/log");
  +
internal();
  +
};
  +
</pre>
  +
 
=== rsyslog client ===
 
=== rsyslog client ===
 
=== syslog ===
 
=== syslog ===

Revision as of 22:00, 5 February 2010

Syslog Next Generation

Syslog-ng heeft uitgebreide mogelijkheden om systemen te beheren op basis van een centrale logging. Het is mogelijk om op basis van events signaleringen te doen. php-syslog-ng biedt een webinterface voor de syslog-ng server. De configuratie is gecompliceerd en luistert nauw, het duurt even voordat de zaak loopt.

OVerzicht van de opzet van de configuratie

Op de centrale server draaien:

  • syslog-ng
  • mysql
  • php-syslog-ng

Algemene installatie

Installeer de syslog-ng applicatie. Het systeem verwijdert de reeds aanwezige logging daemon, syslog of rsyslog.

# apt-get update && apt-get install syslog-ng

Server configuratie

php-syslog-ng

Client configuratie

syslog-ng client

source s_all {
  unix-stream("/dev/log");
  internal();
};

rsyslog client

syslog


Terug naar: Uwork Support Infrastructuur