Can anyone please help with this error message? Im running redhat 9 and everytime i want to start pandora it came up with "Error connecting database in init Phase. Aborting startup". DBI and DBD::mysql already installed too.
You have to install MySQL :-D and review that the port 3306 is open and that you have created the user that connects to the database (take a look at the .conf/pandora_server.conf file:
[code:1]pandora_server.conf
###################################################################################
# Pandora Server Parameters, please change it for your setup needs
###################################################################################
# Servername: Name of this server
servername localhost
# incomingdir: Defines directory where incoming data packets are stored
# You could set directory relative to base path or absolute, starting with /
incomingdir /var/spool/pandora/data_in
# log_file: Main logfile for pandora_server
# You could set file relative to base path or absolute, starting with /
log_file ./log/pandora_server.log
# Error logfile: aux logfile for pandora_server errors (in Daemon mode)
# You could set file relative to base path or absolute, starting with /
errorlog_file ./log/pandora_server.error
# dbuser: Database user name (pandora by default)
dbuser pandora
# daemon: Runs in daemon mode (background) if 1, if 0 runs in foreground
# this could be setup on command line with -D option
# NEW in pandora 1.2, default is 0
# daemon 1
# dbpass: Database password
dbpass pandora
# dbhost: Database hostname or IP address
dbhost localhost
[/code]
Raul