2007-06-28 Manuel Arostegui <marostegui@artica.es>

* pandora_doc/en/pandora_install.xml: Added explanation about
          the new directory which must be created to works
          with the #1744248 feature request.

        * conf/pandora_server.conf: Fixed bug #1744240

        * pandora_server: Added feature request #1744248

        * pandora_recon: Added feature request #1744248

        * pandora_network: Added feature request #1744248



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@547 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
marostegui 2007-06-28 12:27:36 +00:00
parent 9d0e27d612
commit 4d6bff4821
7 changed files with 27 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2007-06-28 Manuel Arostegui <marostegui@artica.es>
* en/pandora_install.xml: Added explanation about
the new directory which must be created to works
with the #1744248 feature request.
2007-06-15 Manuel Arostegui <marostegui@artica.es> 2007-06-15 Manuel Arostegui <marostegui@artica.es>
* en/pandora_install.xml: Changes to adapt the * en/pandora_install.xml: Changes to adapt the

View File

@ -191,6 +191,12 @@
access to <filename>/usr/share/pandora_server</filename> and access to <filename>/usr/share/pandora_server</filename> and
<filename>/var/spool/pandora/data_in</filename> directories. <filename>/var/spool/pandora/data_in</filename> directories.
</para> </para>
<para>
You, also, have to create the directory <filename>/var/run/pandora/</filename>
and make sure that the permissions are set correctly, basically:
<filename>chown pandora:root /var/run/pandora</filename>. Otherwise, PandoraFMS
server will complain about either the missing directory or the wrong permissions.
</para>
<para> <para>
This is true with all the components but with Pandora SNMP Console This is true with all the components but with Pandora SNMP Console
needs root user to open UDP port 161 (this can be solved setting needs root user to open UDP port 161 (this can be solved setting

View File

@ -1,3 +1,13 @@
2007-06-28 Manuel Arostegui <marostegui@artica.es>
* conf/pandora_server.conf: Fixed bug #1744240
* pandora_server: Added feature request #1744248
* pandora_recon: Added feature request #1744248
* pandora_network: Added feature request #1744248
2007-06-25 Sancho Lerena <slerena@artica.es> 2007-06-25 Sancho Lerena <slerena@artica.es>
This should be definitive commit for Beta1 This should be definitive commit for Beta1

View File

@ -29,7 +29,7 @@ dbname pandora
# dbuser: Database user name (pandora by default) # dbuser: Database user name (pandora by default)
dbuser root dbuser pandora
# daemon: Runs in daemon mode (background) if 1, if 0 runs in foreground # daemon: Runs in daemon mode (background) if 1, if 0 runs in foreground
# this could be setup on command line with -D option # this could be setup on command line with -D option

View File

@ -7,7 +7,7 @@
# Configurable path and filenames # Configurable path and filenames
PANDORA_HOME="/usr/share/pandora_server" PANDORA_HOME="/usr/share/pandora_server"
PANDORA_NETWORK_PID="$PANDORA_HOME/var/pandora_network.pid" PANDORA_NETWORK_PID="/var/run/pandora/pandora_network.pid"
# Main script # Main script
@ -34,7 +34,7 @@ case "$1" in
echo $MYPID > $PANDORA_NETWORK_PID echo $MYPID > $PANDORA_NETWORK_PID
echo "Pandora Network Server is now running with PID $MYPID" echo "Pandora Network Server is now running with PID $MYPID"
else else
echo "Cannot start Pandora FMS Network Server. Aborted" echo "Cannot start Pandora FMS Network Server. Aborted."
fi fi
cd "$OLD_PATH" cd "$OLD_PATH"
;; ;;

View File

@ -6,7 +6,7 @@
# Configurable path and filenames # Configurable path and filenames
PANDORA_HOME="/usr/share/pandora_server" PANDORA_HOME="/usr/share/pandora_server"
PANDORA_PID="$PANDORA_HOME/var/pandora_recon.pid" PANDORA_PID="/var/run/pandora/pandora_recon.pid"
# Main script # Main script

View File

@ -6,7 +6,7 @@
# Configurable path and filenames # Configurable path and filenames
PANDORA_HOME="/usr/share/pandora_server" PANDORA_HOME="/usr/share/pandora_server"
PANDORA_SERVER_PID="$PANDORA_HOME/var/pandora_server.pid" PANDORA_SERVER_PID="/var/run/pandora/pandora_server.pid"
# Main script # Main script