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
CREATE DATABASE piwigo CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
CREATE USER 'piwigo_user'@'localhost' IDENTIFIED BY 'パスワード';
/* パスワードは任意のものを設定します */
GRANT ALL ON piwigo.* TO 'piwigo_user'@'localhost';
GRANT RELOAD ON *.* TO 'piwigo_user'@'localhost';
/* 後の運用を考えて、dumpが取得できるようにします */
FLUSH PRIVILEGES;
EXIT;
apache設定
バーチャルファイル作成
ServerName
ドメイン
格納場所(ログ含む)
SSL証明書及び秘密鍵格納位置
は自分の環境に合わせてください。
cat <<- __EOF__ | sudo tee -a /etc/apache2/sites-available/piwigo.conf
<VirtualHost _default_:80>
ServerName album.example.com
# 公開するサーバのドメイン名を指定
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</VirtualHost>
<VirtualHost *:443>
ServerName album.example.com
CustomLog /var/log/apache2/piwigo_access.log combined
ErrorLog /var/log/apache2/piwigo_error.log
# ログの格納先を指定を指定
DocumentRoot /var/www/html/piwigo
<Directory /var/www/html/piwigo>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
# DocumentRootは実際に配置したディレクトリを指定
SSLEngine on
Protocols h2 http/1.1
Header always set Strict-Transport-Security "max-age=63072000"
SSLCertificateFile /etc/certs/example.com.crt
SSLCertificateKeyFile /etc/private/example.com.key
# 証明書と秘密鍵のパスを指定
</VirtualHost>
SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
SSLCipherSuite ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384
SSLHonorCipherOrder off
SSLSessionTickets off
SSLUseStapling On
SSLStaplingCache "shmcb:logs/ssl_stapling(32768)"
__EOF__
バーチャルファイル有効化
sudo a2ensite piwigo.conf
設定反映
sudo apache2ctl configtest
# Syntax OKを確認します
sudo systemctl restart apache2.service
systemctl status apache2.service
# active (running)を確認します
sudo freshclam
ERROR: /var/log/clamav/freshclam.log is locked by another process
ERROR: Problem with internal logger (UpdateLogFile = /var/log/clamav/freshclam.log).
ERROR: initialize: libfreshclam init failed.
ERROR: Initialization error!
対処を行います。
sudo lsof /var/log/clamav/freshclam.log
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
freshclam 7001 clamav 3wW REG 202,1 2161 2319263 /var/log/clamav/freshclam.log
# この時に出てきたPIDを控えておきます。
このプロセスを停止します。
sudo kill -9 7001
# 出てきたPIDを指定します
ログファイルのパーミッション変更
sudo chmod -R 777 /var/log/clamav/
上記を実施後、
sudo freshclam
定義ファイルが更新されることを確認しました。
ウイルス定義ファイル自動更新
sudo systemctl start clamav-freshclam.service
sudo systemctl enable clamav-freshclam.service
systemctl status clamav-freshclam.service
# active (running)を確認します
ClamAVの動作確認
バージョン確認
clamscan --version
ClamAV 0.103.8/26829/Thu Mar 2 20:16:49 2023
# 2023/03/03、aptでインストールした際のバージョン
eicarテストファイルによる確認
cd ~
wget http://www.eicar.org/download/eicar.com
clamscan eicar.com
テスト結果
Win.Test.EICAR_HDB-1 FOUND
----------- SCAN SUMMARY -----------
Known viruses: 8654357
Engine version: 0.103.8
Scanned directories: 0
Scanned files: 1
Infected files: 1
Data scanned: 0.00 MB
Data read: 0.00 MB (ratio 0.00:1)