Welcome to Pandora FMS Community › Forums › Community support › Error starting tentacle dameon – debian package
-
Error starting tentacle dameon – debian package
Posted by rkonav on August 24, 2009 at 07:46Hi,
My english is not too good, so excuse me for my possibles mistakes.
I have started to play with pandora last week, so my knowledge of the platform is not too high. I have installed Pandora FMS on debian, installing the .deb packages published in the blog of Pandora (i have seen after that i would have installed it with apt)
I have found a possible mistake in the /etc/init.d/tentacle_serverd file, because it´s use sudo instead of su, in consecuence, the script generate an error and the tentacle daemon doesn´t starts.
I´ve modified the line instead:
su $TENTACLE_USER -c "${TENTACLE_PATH}$TENTACLE_DAEMON $TENTACLE_OPTS"
Nice to meet you
Paco
Sancho replied 15 years, 6 months ago 2 Members · 3 Replies -
3 Replies
-
::
Hi again,
I have also detected a possible improvement to manage the logs of pandora. I have created the file /etc/logrotate.d/pandora.
The contents of the file is:
/var/log/pandora/* { weekly missingok rotate 52 compress delaycompress notifempty create 640 root adm sharedscripts postrotate for i in `ls -1 /etc/init.d/pandora_*`;do $i stop; $i start; done endscript }
-
-