PHP
[PHP] 서버 환경 셋팅 (CentOS7)
innocent_k
2017. 1. 3. 15:16
Mysql 5.6 버전 설치
# rpm -ivh http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
# yum install mysql-community-server
php 5.6 설치를 위한 remi-repository 추가
# yum -y install epel-release
# cd /etc/yum.repos.d
# wget http://rpms.famillecollet.com/enterprise/remi.repo
php 5.6 및 apache 설치
# yum -y --enablerepo=remi,remi-php56 install httpd php php-common
php 5.6 extension 설치
# yum --enablerepo=remi,remi-php56 install php-mbstring
# yum --enablerepo=remi,remi-php56 install php-xml