CentOS7にのりかえて、ちょっと焦ったのでめも。
ちょっと触ると逆に6よりわかりやすいかもw
※rpmforage
# rpm -ivh http://apt.sw.be/redhat/el7/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm
※epel
# rpm -ivh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
※remiを追加
# rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
yumをアップデート
# yum update
nginx + php-fpm + redis のインストール
CentOS7から デフォルトでserviceコマンドではなく、systemctlコマンドでサービスを管理するようになった。
nginxのインストール
# yum install nginx
# systemctl status nginx.service
# systemctl start nginx.service
# systemctl enable nginx.service
※php-fpm.d/www.conf のuser と group を apahce → nginx へ
php-fpmのインストール
# yum install php-fpm php-mbstring php-gd php-mysql php-redis
# systemctl status php-fpm.service
# systemctl start php-fpm.service
# systemctl enable php-fpm.service
redisのインストール
# yum install redis
# systemctl status redis.service
# systemctl start redis.service
# systemctl enable redis.service