2021-03-22から1日間の記事一覧

CentOS7でメール受信時にスクリプトを実行する

Postfixの設定 すでにインストール済みのはずなのでアップデートしてから設定。DNSの設定は済んでいるものとする。 yum -y update postfix cp /etc/postfix/main.cf /etc/postfix/main.cf.org vi /etc/postfix/main.cf diff /etc/postfix/main.cf.org /etc/p…

さくらのVPSでCentOS7にローカル接続の設定

何度やっても忘れますので備忘録。 192.168.0.5 に設定する例です。 nmcli connection up "System eth1" nmcli c m "System eth1" connection.autoconnect yes nmcli connection modify "System eth1" ipv4.method manual ipv4.addresses "192.168.0.5/24" c…

CentOS7で快適な開発環境を作る(Vim, Tmux, Zsh)

いろんな宗派があると思うので、私はこうだよ、という備忘録。 とりあえず これは入れておく。 yum install -y git wget Tmux2.9 yum で入れると古すぎるので、開発環境だし最新を入れます。 3.0 だと新しすぎて怖いので、 2.9 で。ソースからコンパイル。 l…

CentOS7にPHP74, PostgreSQL12, MariaDB10.4をインストールする

PostgreSQL12 12用のリポをゲットしてインストール。 yum -y install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm yum -y install postgresql12-server postgresql12-contrib cp /var/lib/pgsq…