I want to change the reference DB in Bitnami Redmine

Asked 2 years ago, Updated 2 years ago, 114 views

"I installed Bitnami Redmine on ""Sakura no VPS"" where the LAMP environment is built, but
" I have confirmed that MySQL included with Bitnami and MySQL, which was originally included, cannot be started simultaneously.

Apache was able to boot simultaneously by changing the port on the Redmine side to 8081, but MySQL would like to change the DB referenced from Redmine to "Redmine's MySQL -> Originally included MySQL" instead of the port change.

I searched through search engines and searched documents, but I'm in trouble because I can't find a good way.
I'm afraid you'll teach me.

The environment consists of:
CentOS 6.6
Bitnami Redmine 3.3
Apache 2.2.15
MySQL 14.14
PHP 5.5

mysql redmine bitnami

2022-09-30 21:43

1 Answers

Redmine should have managed the DB connection with the configuration file config/database.yml located below the installation directory, so try rewriting this statement with the appropriate information.

/opt/bitnami/apps/redmine/htdocs/config/database.yml

production:
  adapter —mysql2
  database —bitnami_redmine
  host —localhost
  username —bitnami
  password —xxxxxxxxx
  xxxxxxxx


2022-09-30 21:43

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.