CentOS7 Apache2.4 に PHP7.0を入れる


目的

Laravel5.5アプリケーションを動かすために、PHPを導入する。

参考資料

手順

リポジトリ追加

yum -y install epel-release
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm

PHPインストール

yum

yum install --enablerepo=remi,remi-php70 php php-devel php-mbstring php-pdo php-gd php-xml php-mcrypt php-pecl-zip php-mysqlnd

composerも入れます(CentOSにPHP7とcomposerをインストールする方法

curl -sS https://getcomposer.org/installer | php -- --install-dir=/tmp
sudo mv /tmp/composer.phar /usr/local/bin/composer

php.ini編集

php.ini
date.timezone = "Asia/Tokyo"

mbstring.language = Japanese
mbstring.internal_encoding = UTF-8