|
From: Brown, M. D <Mic...@fn...> - 2005-05-12 15:37:25
|
You will need to edit that file and put the following in it or just
start it manually /usr/localbin/feed_db.pl ( use -background to make
it fork)
=20
PATH=3D"/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin"
LONGNAME=3D"iptables logfile analyzer"
NAME=3D"iptablelog"
DAEMON=3D'/usr/local/bin/feed_db.pl'
=20
set -e
=20
# Main Loop
case $1 in
start)
echo -n "Starting $LONGNAME: ";
$DAEMON --background
echo $NAME;
;;
stop)
echo -n "Stopping $LONGNAME: "
killall -9 feed_db.pl
rm -f /var/run/$NAME.pid
echo $NAME
;;
*)
N=3D/etc/init.d/$NAME
# echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
echo "Usage: $N {start|stop}" >&2
exit 1
;;
esac
=20
exit 0
=20
# EOF
=20
Thanks,
Michael Brown,
_____ =20
From: ipt...@li...
[mailto:ipt...@li...] On Behalf Of
Gilles Yue
Sent: Thursday, May 12, 2005 1:00 AM
To: ipt...@li...
Subject: [Iptablelog-users] iptablelog on FEDORA CORE3
=20
Hi everyone,=20
I have a linux box with FEDORA CORE 3 and iptables version 1.2.11
installed.
I have installed iptables Log Analyzer v0.4, however, when i run the run
/etc/init.d/iptablelog start, nothing happens, i can't find any data on
the webpage and even worse, i cannot find any iptablelog daemon running.
I don't get any error messages and i have followed exactly as written on
the installation guide at http://iptablesrocks.org.
Has anybody experienced this problem before, thanks.
gy
|