パッケージ管理システム設定、root宛メール転送、SELinux無効化

IT

下記の通り設定した

パッケージ管理システム設定
①yum update

yum update


②yum-cronインストール・設定

yum install yum-cron

cp /etc/yum/yum-cron.conf{,.org}

vi /etc/yum/yum-cron.conf
#Whether updates should be applied when they are available.  Note
# that download_updates must also be yes for the update to be applied.
apply_updates = yes

systemctl start yum-cron

systemctl enable yum-cron

systemctl status yum-cron

ステータスを確認し、正常に起動できていればOK


③ベース、開発ツールパッケージ群インストール

yum groupinstall base "Development tools"




root宛メール転送
普段使用しているgmailのアドレスに転送する

sed -i '/^root:/d' /etc/aliases

echo "root: menumasugi@hogehoge.example.com" >> /etc/aliases

newaliases

echo test|mail root

指定したメールアドレスに本文に「test」と記載されたメールが
届くことを確認する




SELinuxの無効化
もともと無効になっているので追加設定は必要ないが
念のため設定を確認しておく

getenforce
Disabled

vi /etc/sysconfig/selinux
SELINUX=disabled

上記のようにどちらもdisabledになっていればOK





■参考
https://centossrv.com/centos7-init.shtml

コメント

タイトルとURLをコピーしました