CentOS7にapacheとPHPをインストールする方法

2019年1月3日

1.Apacheをインストールする
# yum install httpd

2.Apacheを起動する
# systemctl start httpd

自動起動
# systemctl enable httpd

3.ファイアウォールを設定する
# firewall-cmd –add-service=http –zone=public –permanent
# firewall-cmd –add-service=https –zone=public –permanent

firewalldを再起動する。
# systemctl restart firewalld

4.EPELリポジトリをインストールする
# yum install epel-release

5.remiをインストールする
# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm

6.PHPをインストールする
# yum -y install –enablerepo=remi,remi-php71 php php-devel php-pdo php-gd php-mbstring php-mysqlnd

7.ファイルアップロードの上限を変更する
# vim /etc/php.ini
修正内容
post_max_size = 4G
upload_max_filesize = 4G

8.タイムゾーンを変更する
# vim /etc/php.ini
追記
date.timezone = Asia/Tokyo

8.Apacheを再起動する
# systemctl restart httpd

Linux

Posted by arkgame