phpは、5.6以上を利用しましょう。
# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm php5.6をインストールする場合 # yum install --enablerepo=remi,remi-php56 php php-devel php-mbstring php-pdo php-gd php-xml php-mcrypt php7.1をインストールする場合 # yum install --enablerepo=remi,remi-php71 php php-devel php-mbstring php-pdo php-gd php-xml php-mcrypt
# getenforce <- 確認 Enforcing <- 有効 # setenforce 0 <- disableにする # getenforce <- 確認 Permissive <- 無効
OS再起動後も有効にする設定方法
/etc/selinux/config (RHEL/CentOS7)
/etc/sysconfig/selinux (RHEL/CentOS5,6)
SELINUX=disabled
[Date] date.timezone = "Asia/Tokyo"
# cd /etc/httpd/conf # cp -p httpd.conf httpd.conf.20160910 # vi httpd.conf <Directory "/var/www/html"> AllowOverride All #.htaccessを使えるようにする
# systemctl stop firewalld.service # systemctl start httpd.service
# systemctl disalbe firewalld.service # systemctl enable httpd.service
phpが動作することを確認