これまで、CentOS7で運用していたWindowsファイルサーバー(Sambaサーバー)をCentOS8に変更しました。
CentOS8をインストールして途惑った点は、
■■root宛メール転送
当初Postfixをインストールして、root宛メール転送を試みましたが上手くいかず、sendmailで対応しました。
■sendmailインストール
# dnf install sendmail
# dnf install mailx
# systemctl start sendmail
# systemctl enable sendmail
■転送設定
旧root宛メール転送設定削除
# sed -i ‘/^root:/d’ /etc/aliases
■root宛メールに転送
# echo “root: io-net@plala.to” >> /etc/aliases
■転送設定反映
# newaliases
■テストメールをroot宛に送信
# echo test|mail root
■■自動バックアップ
バックアップスクリプト tarコマンドにて -Xで指定したファイルが除外できずエラー発生
#tar cvfP $BACKUPDIR/backup.tar -T $BACKUPLIST -X $TMPBACKUPNOLIST >> $BACKUPLOG 2>&1
tar: The following options were used after any non-optional arguments in archive create or update mode. These options are positional and affect only arguments that follow them. Please, rearrange them properly.
tar: –exclude-from ‘/tmp/tmp.CA8ZrAU1tn’ has no effect
tar: Exiting with failure status due to previous errors
引数の順番を変更してOKとなりました。
tar cvfP $BACKUPDIR/backup.tar -X $TMPBACKUPNOLIST -T $BACKUPLIST >> $BACKUPLOG 2>&1