cd /var/lib
# Redmineが格納されているディレクトリの親ディレクトリに移動します
ls -ld redmine
# 退避対象のディレクトリがあることを確認します
sudo mv redmine redmine_$(date +%Y%m%d)
ls -ld redmine_$(date +%Y%m%d)
apache停止
ここでWebサービスを停止するのは、DBを削除するためです。
systemctl status apache2.service
sudo systemctl stop apache2.service
systemctl status apache2.service
DB削除
慎重に行って下さい。
sudo mysql -u root -p
show databases;
/* redmineのDBがあることを確認 */
drop database redmine;
show databases;
/* redmineのDBがないことを確認 */
CREATE DATABASE redmine character set utf8mb4;
show databases;
/* redmineのDBがあることを確認 */
exit
sequenceDiagram
participant b as バックアップ
participant p as パスワード生成
note over b: 処理実行
note over b: 作業ディレクトリ<br>作成
note over b: MySQL dump
b->>p: スクリプト呼び出し
note over p: 処理実行
note over p: PW発行
note over p: PWファイル作成
p-->>b: スクリプト実行完了
note over b,p: PWファイルを元に暗号化
note over b: 作業ディレクトリ<br>削除
note over b: 古いバックアップ削除
note over b,p: 古いPWファイルを削除
note over b: 処理完了
As reported in issue #12, the plugin "mega_calendar" ist not compatible with this plugin due to an issue with the provided users_controller_path.rb file.
Internal Error An error occured 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, check your log files for details about the error.