Displaying 1 result from an estimated 1 matches for "chip2_product".
Did you mean:
ching_product
2006 Sep 15
2
unable to figure out how to get backgroundrb.yml to be used when starting backgroundrb
...t
config/backgroundrb.yml file as:
---
port: "22223"
timer_sleep: 60
load_rails: true
environment: production
host: localhost
database_yml: config/database.yml
acl:
deny: all
allow: localhost 127.0.0.1
order: deny,allow
and my database.yml
production:
adapter: mysql
database: chip2_production
username: xxxxx
password: xxxxx
socket: /var/lib/mysql/mysql.sock
i found that rake backgroundrb:start starts the server with the
default values so i attempted to run:
script/backgroundrb/start --config-file config/backgroundrb.yml
but i get the following error:
AM2005:/srv/www/rails...