■ Redmineにアクセスしたら、ブラウザ上に「We're sorry, but something went wrong.」が表示
* Redmineにアクセスしたら、ブラウザ上に以下のエラー内容が表示されてしまう
エラー内容
We're sorry, but something went wrong.
We've been notified about this issue and we'll take a look at it shortly.
原因
* MySQLが止まってしまっていた
本質的には以下のURLと同じ
https://teratail.com/questions/10484
解決策
* MySQLを立ち上げ直す
systemctl start mysqld.service
■ Redmineで使用するMySQLインストールした後にエラーで起動できない
* Redmineで使用するMySQLインストールした後が起動できない
* MySQLのログ「/var/log/mysqld.log」を参照したところ、以下のエラー内容が表示されてしまう
エラー内容
2016-08-09T14:19:08.254974Z 0 [ERROR] InnoDB: Operating system error number 13 in a file operation.
2016-08-09T14:19:08.254984Z 0 [ERROR] InnoDB: The error means mysqld does not have the access rights to the directory.
2016-08-09T14:19:08.254988Z 0 [ERROR] InnoDB: Plugin initialization aborted with error Generic error
2016-08-09T14:19:08.867268Z 0 [ERROR] Plugin 'InnoDB' init function returned error.
2016-08-09T14:19:08.867313Z 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
2016-08-09T14:19:08.867321Z 0 [ERROR] Failed to initialize plugins.
2016-08-09T14:19:08.867325Z 0 [ERROR] Aborting
解決策
[1] 一旦、MySQLを止める
systemctl stop mysqld.service
[2]