差分
このページの2つのバージョン間の差分を表示します。
両方とも前のリビジョン 前のリビジョン 次のリビジョン | 前のリビジョン | ||
環境構築:Redmine:運用上の注意 [2022/11/30 08:44] – 削除 - 外部編集 (Unknown date) 127.0.0.1 | 環境構築:Redmine:運用上の注意 [2025/04/12 05:15] (現在) – 外部編集 127.0.0.1 | ||
---|---|---|---|
行 1: | 行 1: | ||
+ | # Redmine 運用上の注意 | ||
+ | ### 運用途中に「Internal error」の発生 | ||
+ | |||
+ | 参考: | ||
+ | |||
+ | 現象としては、いつも通りにRedmine にアクセスすると下記のメッセージが表示された。 | ||
+ | |||
+ | ``` | ||
+ | Internal error | ||
+ | An error occurred on the page you were trying to access. | ||
+ | If you continue to experience problems please contact your Redmine administrator for assistance. | ||
+ | |||
+ | If you are the Redmine administrator, | ||
+ | |||
+ | Back | ||
+ | ``` | ||
+ | |||
+ | 原因としては、MySQLサーバが正常に動作していないことであった。 | ||
+ | |||
+ | 下記のコマンドで正常に起動しなかったことを確認できる。 | ||
+ | |||
+ | ``` | ||
+ | $ sudo systemctl status mysqld | ||
+ | $ sudo less / | ||
+ | ``` | ||
+ | |||
+ | 自分の場合は、下記がエラー原因であった。 | ||
+ | |||
+ | ``` | ||
+ | [ERROR] [MY-010259] [Server] Another process with pid 2010 is using unix socket file | ||
+ | ``` | ||
+ | |||
+ | そのため、下記のコマンドで再起動すれば、Redmine にアクセスすることが可能になった。 | ||
+ | |||
+ | ``` | ||
+ | $ sudo systemctl restart mysqld | ||
+ | ``` |