more readme
This commit is contained in:
parent
3cc2e489b5
commit
27f2157bf8
42
README.md
42
README.md
|
@ -1,14 +1,12 @@
|
|||
Dependencies
|
||||
============
|
||||
|
||||
incomplete yet.
|
||||
|
||||
System
|
||||
------
|
||||
|
||||
* ruby >= 1.9 (tested: 1.9.1, untested: 1.8 (maybe compatible))
|
||||
* libdb >= 4 (tested: 4.7)
|
||||
* C-Compiler
|
||||
* libdb >= 4.7 (tested: 4.7/4.8)
|
||||
* C-Compiler (tested: gcc 4.4.1)
|
||||
|
||||
### Debian/Ubuntu:
|
||||
|
||||
|
@ -20,39 +18,42 @@ Change shebash in s2l.rb to
|
|||
|
||||
#!/usr/bin/ruby1.9.1
|
||||
|
||||
or
|
||||
|
||||
#!/usr/bin/env ruby1.9.1
|
||||
|
||||
Ruby Gems
|
||||
---------
|
||||
|
||||
* BDB >= 0.2.2 (patch needed - gem included)
|
||||
* UUIDTools
|
||||
You should install *dk-bdb* manualy:
|
||||
|
||||
Install: (in syslog2logan-dir)
|
||||
|
||||
# gem install bdb-0.2.2.gem uuidtools
|
||||
# gem install dk-bdb -- --with-db-dir=/usr --with-db-include=/usr/include
|
||||
|
||||
Every other dependencies will be installed automaticaly,
|
||||
if you install syslog2logan via gem.
|
||||
|
||||
Install
|
||||
=======
|
||||
|
||||
# gem build syslog2logan.gemspec
|
||||
# gem install syslog2logan-*.gem
|
||||
|
||||
# gem install syslog2logan
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
First you should know, the database environments are in *this* directory,
|
||||
where you call *s2l.rb*. You must use this directory for logan itself too!
|
||||
Don't use this directory for anything else.
|
||||
|
||||
Start
|
||||
-----
|
||||
|
||||
Simple:
|
||||
Simple on Ubuntu:
|
||||
|
||||
# ./s2l.rb
|
||||
# /var/lib/gems/1.9*/gems/syslog2logan-*/bin/s2l.rb
|
||||
|
||||
Or deamonized:
|
||||
|
||||
# sh -c 'nohup ./s2l.rb </dev/null >/dev/null 2>&1 &' &
|
||||
Deamonized:
|
||||
|
||||
# sh -c 'nohup PATHTO/s2l.rb </dev/null >/dev/null 2>&1 &' &
|
||||
|
||||
Use it
|
||||
------
|
||||
|
@ -67,7 +68,7 @@ You need these lines:
|
|||
|
||||
source s_server {
|
||||
unix-stream( "/dev/log" max-connections(100));
|
||||
# internal(); # Statistics about dests. You've any other dest than the server?
|
||||
# internal(); # Statistics about dests. It's unimportant for LogAn.
|
||||
file( "/proc/kmsg");
|
||||
};
|
||||
|
||||
|
@ -80,9 +81,6 @@ You need these lines:
|
|||
destination( d_server);
|
||||
};
|
||||
|
||||
You should use your default source.
|
||||
|
||||
|
||||
### rsyslog
|
||||
|
||||
I don't know. Please tell me, if you can.
|
||||
I don't know. Please tell me, how to use.
|
||||
|
|
Loading…
Reference in a new issue