centos7 php7x 컴파일 설치# Script/PHP2019. 1. 6. 16:13
Table of Contents
728x90
반응형
# wget http://php.net/distributions/php-7.3.0.tar.gz
# ./configure --prefix=/usr/local/php73 \
--with-apxs2 \
--with-config-file-path=/usr/local/php73/etc \
--enable-fpm \
--enable-sigchild \
--with-libxml-dir \
--with-openssl \
--with-zlib \
--with-mysqli \
--with-zlib-dir \
--with-bz2 \
--enable-calendar \
--with-curl \
--enable-dba \
--with-gdbm \
--enable-exif \
--enable-ftp \
--with-gd \
--with-jpeg-dir \
--with-png-dir \
--with-freetype-dir \
--with-gettext \
--with-imap \
--with-imap-ssl \
--with-kerberos \
--enable-mbstring \
--with-mhash \
--enable-sockets \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-wddx \
--enable-opcache \
--enable-zip \
--with-pdo-mysql \
--with-snmp \
--enable-intl
에러
checking for libzip... configure: error: system libzip must be upgraded to version >= 0.11
# yum install cmake3 -y (3.x 설치)
# ln -s /usr/bin/cmake3 /usr/local/bin/cmake
# wget https://libzip.org/download/libzip-1.5.1.tar.gz
# tar xvfz libzip-1.5.1.tar.gz
# cd libzip-1.5.1
# mkdir build
# cd build
# cmake3 ..
# make
# make install
libzip 라이브러리 등록
# vi /etc/ld.so.conf 아래내용추가1
/usr/local/lib
/usr/local/lib64
라이브러리 적용
# ldconfig
등록되었는지 확인
# ldconfig -p | grep 'libzip'
728x90
반응형
'# Script > PHP' 카테고리의 다른 글
[PHP]libphp4.so: undefined symbol 오류 (0) | 2019.01.08 |
---|---|
단일서버 php버전별 사용하기(php-fpm) (0) | 2019.01.07 |
[PHP]mysql 접속 에러 (0) | 2017.06.16 |
PHP mysql 연결 확인 소스 (0) | 2017.06.16 |
curl를 이용한 다음 자동로그인 (0) | 2016.08.24 |
@다크쉐라빔 :: 다크쉐라빔의 주절주절
안녕하세요. 이곳은 IT위주의 잡다한 정보를 올려두는 개인 블로그입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!