php7 mariadb10 설치

//php7 mariadb10 설치

php7 mariadb10 설치

php7.0 mariadb10.0 버전으로 설치를 진행합니다.
centos 6점대 64bit에서 설치합니다 (yum 업데이트후 Centos6.10 64bit)

1) 아파치 설치
관련 라이브러리를 설치합니다.
# yum install libjpeg* libpng* freetype* gd-* gcc gcc-c++ gdbm-devel libtermcap-devel

아파치를 설치합니다.
yum install httpd httpd-devel mod_ssl

2) mariadb 10.0 설치
yum 저장소를 생성합니다.
vi /etc/yum.repos.d/MariaDB.repo

하단내용을 적어 넣습니다.
# http://downloads.mariadb.org/mariadb/repositories/
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.0/centos6-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1

mariadb를 설치합니다.
yum install MariaDB-server MariaDB-client

https://downloads.mariadb.org/mariadb/repositories/#mirror=harukasan&distro=CentOS OS 및 mariadb버전별 배포 및 참조사이트 입니다.(다른 버전의 OS나 mariadb를 설치하실때 참조하시면 됩니다.)

3) php 7 설치
yum 저장소 생성합니다. (OS 버전별 참고 사이트 https://webtatic.com/projects/yum-repository/)
CentOS/RHEL 6.x:
yum install epel-release
rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm
yum install php70w php70w-mysqlnd php70w-pdo php70w-pgsql php70w-odbc php70w-mbstring php70w-mcrypt php70w-gd
yum install php70w-pear php70w-pdo_dblib php70w-pecl-imagick php70w-pecl-imagick-devel php70w-xml php70w-xmlrpc

About the Author: