I installed redmine-1.1.3-1.1 on a openSUSE 12.1 using the repositories http://download.opensuse.org/repositories/devel:/tools:/scm/openSUSE_12.1 . Anyway, after the installation: I edited the database.yml file to add the mysql location on other server.
This way:
production:
adapter: mysql
database: redmine
host: <mysql-host>
username: redmine
password: <redmine.passwd.on.mysql>
encoding: utf8
then I started the redmine (rcredmine start)
# rcredmine start
redirecting to systemctl
an looks like it's working.
# rcredmine status
redirecting to systemctl
redmine.service - LSB: Redmine Web Server
Loaded: loaded (/etc/init.d/redmine)
Active: active (exited) since Mon, 05 Mar 2012 15:32:27 -0200; 9s ago
Process: 4601 ExecStop=/etc/init.d/redmine stop (code=exited, status=0/SUCCESS)
Process: 4683 ExecStart=/etc/init.d/redmine start (code=exited, status=0/SUCCESS)
CGroup: name=systemd:/system/redmine.service
when I watch the logs don't show me anything strange.
# tail -f /var/log/messages
Mar 5 15:32:27 redmine redmine[4683]: Starting Redmine daemon..done
There's no port at all
~ # netstat -nat | grep 3000
~ #
What I am missing?