Linux 환경에서는 PHP를 직접 컴파일하고 설치해야 하는 경우가 많습니다. PHP를 사용할 때 주의를 기울이지 않고 다시 컴파일해야 하는 경우가 종종 있습니다. 따라서 일반적으로 사용되는 구성 명령은 다음과 같습니다.
첫 번째 단계는 종속 패키지를 설치하는 것입니다.
yum -y install gcc make gd-devel libjpeg-devel libpng-devel libxml2-devel bzip2-devel libcurl-devel libaio
mcrypt 확장 프로그램을 설치하려면
yum install libmcrypt-devel
명령을 사용한 다음
yum install php-mcrypt
cd /tmp wget http://cn2.php.net/get/php-5.5.10.tar.gz/from/cn2.php.net/mirror tar -zxvf mirror cd ./php-5.5.10
./configure \ --prefix=/usr/local/php5 \ --with-config-file-path=/usr/local/php5/etc \ --with-bz2 \ --with-curl \ --enable-ftp \ --enable-sockets \ --disable-ipv6 \ --with-gd \ --with-jpeg-dir=/usr/local \ --with-png-dir=/usr/local \ --with-freetype-dir=/usr/local \ --enable-gd-native-ttf \ --with-iconv-dir=/usr/local \ --enable-mbstring \ --enable-calendar \ --with-gettext \ --with-libxml-dir=/usr/local \ --with-zlib \ --with-pdo-mysql=mysqlnd \ --with-mysqli=mysqlnd \ --with-mysql=mysqlnd \ --enable-dom \ --enable-xml \ --with-libdir=lib64 \ --enable-pdo \ --enable-fpm \ --enable-mcrypt
checking for known struct flock definition… configure: error: Don’t know how to define struct flock on this system, set –enable-opcache=no
yum groupinstall "Development tools"
make make install