|
|
|
@ -1,20 +1,23 @@
|
|
|
|
|
# Default setup is given for MySQL with ruby1.8. If you're running Redmine
|
|
|
|
|
# with MySQL and ruby1.9, replace the adapter name with `mysql2`.
|
|
|
|
|
# Examples for PostgreSQL and SQLite3 can be found at the end.
|
|
|
|
|
# Default setup is given for MySQL with ruby1.9. If you're running Redmine
|
|
|
|
|
# with MySQL and ruby1.8, replace the adapter name with `mysql`.
|
|
|
|
|
# Examples for PostgreSQL, SQLite3 and SQL Server can be found at the end.
|
|
|
|
|
# Line indentation must be 2 spaces (no tabs).
|
|
|
|
|
|
|
|
|
|
production:
|
|
|
|
|
adapter: mysql2
|
|
|
|
|
database: bitnami_redmine
|
|
|
|
|
host: 10.0.47.245
|
|
|
|
|
host: 192
|
|
|
|
|
socket: /home/pdl/redmine-2.3.1-2/mysql/tmp/mysql.sock
|
|
|
|
|
port: 3306
|
|
|
|
|
username: root
|
|
|
|
|
password: "bitnami"
|
|
|
|
|
password: "1234"
|
|
|
|
|
encoding: utf8
|
|
|
|
|
|
|
|
|
|
development:
|
|
|
|
|
adapter: mysql2
|
|
|
|
|
database: bitnami_redmine
|
|
|
|
|
host: 10.0.47.245
|
|
|
|
|
#socket: /home/pdl/redmine-2.3.1-2/mysql/tmp/mysql.sock
|
|
|
|
|
port: 3306
|
|
|
|
|
username: root
|
|
|
|
|
password: "bitnami"
|
|
|
|
@ -26,20 +29,34 @@ development:
|
|
|
|
|
test:
|
|
|
|
|
adapter: mysql2
|
|
|
|
|
database: bitnami_redmine
|
|
|
|
|
host: 10.0.47.121
|
|
|
|
|
host: 192.168.83.251
|
|
|
|
|
socket: /home/pdl/redmine-2.3.1-2/mysql/tmp/mysql.sock
|
|
|
|
|
port: 3306
|
|
|
|
|
username: root
|
|
|
|
|
password: "7a9dca93e6"
|
|
|
|
|
password: "1234"
|
|
|
|
|
encoding: utf8
|
|
|
|
|
|
|
|
|
|
test_pgsql:
|
|
|
|
|
adapter: postgresql
|
|
|
|
|
database: bitnami_redmine
|
|
|
|
|
host: 10.0.47.121
|
|
|
|
|
# PostgreSQL configuration example
|
|
|
|
|
#production:
|
|
|
|
|
# adapter: mysql2
|
|
|
|
|
# database: bitnami_redmine
|
|
|
|
|
# host: localhost
|
|
|
|
|
socket: /home/pdl/redmine-2.3.1-2/mysql/tmp/mysql.sock
|
|
|
|
|
port: 3306
|
|
|
|
|
username: root
|
|
|
|
|
password: "1234"
|
|
|
|
|
# username: bitnami
|
|
|
|
|
# password: "c16af1e560"
|
|
|
|
|
|
|
|
|
|
test_sqlite3:
|
|
|
|
|
adapter: sqlite3
|
|
|
|
|
database: bitnami_redmine
|
|
|
|
|
# SQLite3 configuration example
|
|
|
|
|
#production:
|
|
|
|
|
# adapter: mysql2
|
|
|
|
|
# database: bitnami_redmine
|
|
|
|
|
|
|
|
|
|
# SQL Server configuration example
|
|
|
|
|
#production:
|
|
|
|
|
# adapter: mysql2
|
|
|
|
|
# database: bitnami_redmine
|
|
|
|
|
# host: localhost
|
|
|
|
|
socket: /home/pdl/redmine-2.3.1-2/mysql/tmp/mysql.sock
|
|
|
|
|
port: 3306
|
|
|
|
|
# username: bitnami
|
|
|
|
|
# password: "c16af1e560"
|
|
|
|
|