lightweight httpd needed

bigearsbilly said:
They aren't system logs, just logs from scripts, cron jobs, configs etc.
Setting up remote syslog is bit of a sledgehammer.
I've never really liked using syslog for user mode stuff. You have to make all scripts use it.

It's dead easy to do:
Code:
exec > $log
exec 2>&1

Mostly though, I have very limited resources, especially time!

I don't understand where you see this "sledgehammer"...

It's as simple as:
Code:
exec 2>&1 | logger -h logger.host.com -t "my_app"

Or you can set up a very small and simple crontab script to flush the log files to syslogd in time periods (check logger() -f option). Setting up remote syslogd is also quite simple (check the manual from the previous post).

Its not a matter of resources its just a matter to not be stubborn and thinking outside one mindset :p.
 
Back
Top