
  
bash-3.2# cat apps/redmine/config/database.yml

# MySQL (default setup).  Versions 4.1 and 5.0 are recommended.

#

# Get the fast C bindings:

#   gem install mysql

#   (on OS X: gem install mysql -- --include=/usr/local/lib)

# And be sure to use new-style password hashing:

#   http://dev.mysql.com/doc/refman/5.0/en/old-client.html

 

production:

  adapter: mysql

  database: bitnami_redmine

  host: localhost

  username: bitnami

  password: 09d6abee7f

  socket: /opt/redmine-1.1.0-0/mysql/tmp/mysql.sock

 

development:

  adapter: mysql

  database: redmine_development

  host: localhost

  username: bitnami

  password: 09d6abee7f

  socket: /opt/redmine-1.1.0-0/mysql/tmp/mysql.sock

 

test:

  adapter: mysql

  database: redmine_test

  host: localhost

  username: bitnami

  password: 09d6abee7f

  socket: /opt/redmine-1.1.0-0/mysql/tmp/mysql.sock

 

test_pgsql:

  adapter: postgresql

  database: redmine_production

  host: localhost

  username: postgres

  password: 09d6abee7f

 

 

test_oracle:

  adapter: oci

  host: 192.168.0.14

  username: rails_test

  password: 09d6abee7f

 

 

test_sqlserver:

  adapter: sqlserver

  host: localhost,1157

  database: redmine_test

 

demo:

  adapter: sqlite3

  dbfile: db/redmine_demo.db

 

