A penny saved is a penny earned / 節約した1ペニーは1ペニー稼いだのと同じ Actions speak louder than words / 言葉より行動 All good things come to those who wait / 望むことは遠くにあり、我慢して待てば必ず手に入る An apple a day keeps the doctor away / 1日にリンゴを食べると医者は遠ざかる Don't count your chickens before they hatch / 卵を孵す前に小鳥を数えるな Every cloud has a silver lining / 苦しいことの中にも良いことがある Fortune favors the brave / 運は勇気ある者に付きもの Honesty is the best policy / 誠実は最高の策略 If at first you don't succeed, try, try again / 失敗してもくじけずに何度でも挑戦せよ Necessity is the mother of invention / 必要は発明の母 No pain, no gain / 苦労なくして報酬なし Penny wise, pound foolish / 1を惜しんで100失う (木を見て森を見ず) Practice makes perfect / 習うより慣れろ Rome wasn't built in a day / ローマは一日にして成らず The early bird catches the worm / 早起きは三文の徳 The grass is always greener on the other side of the fence / 隣の芝は青く見える The squeaky wheel gets the grease / うるさい方が注目を集める There's no such thing as a free lunch / 無料の昼食は存在しない Time is money / 時間は金 Where there's smoke, there's fire / 煙のあるところには火がある
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