4.安裝依賴包
yum install libxml2 libxml2-devel openssl openssl-devel bzip2 bzip2-devel libcurl libcurl-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel gmp gmp-devel libmcrypt libmcrypt-devel readline readline-devel libxslt libxslt-devel
5.編譯配置(如果出現錯誤,基本都是上一步的依賴檔案沒有安裝所致)
./configure \
--prefix=/data/server/php \
--with-config-file-path=/etc \
--enable-fpm \
--with-fpm-user=nginx \
--with-fpm-group=nginx \
--enable-inline-optimization \
--disable-debug \
--disable-rpath \
--enable-shared \
--enable-soap \
--with-libxml-dir \
--with-xmlrpc \
--with-openssl \
--with-mcrypt \
--with-mhash \
--with-pcre-regex \
--with-sqlite3 \
--with-zlib \
--enable-bcmath \
--with-iconv \
--with-bz2 \
--enable-calendar \
--with-curl \
--with-cdb \
--enable-dom \
--enable-exif \
--enable-fileinfo \
--enable-filter \
--with-pcre-dir \
--enable-ftp \
--with-gd \
--with-openssl-dir \
--with-jpeg-dir \
--with-png-dir \
--with-zlib-dir \
--with-freetype-dir \
--enable-gd-native-ttf \
--enable-gd-jis-conv \
--with-gettext \
--with-gmp \
--with-mhash \
--enable-json \
--enable-mbstring \
--enable-mbregex \
--enable-mbregex-backtrack \
--with-libmbfl \
--with-onig \
--enable-pdo \
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-zlib-dir \
--with-pdo-sqlite \
--with-readline \
--enable-session \
--enable-shmop \
--enable-******xml \
--enable-sockets \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-wddx \
--with-libxml-dir \
--with-xsl \
--enable-zip \
--enable-mysqlnd-compression-support \
--with-pear \
--enable-opcache \
--without-pear \
--disable-phar
編譯安裝php報錯php configure: error: mcrypt.h not found. please reinstall libmcrypt. 解決辦法
1、使用yum命令安裝
yum install php-mcrypt libmcrypt libmcrypt-devel
方法2:
使用php mcrypt 前必須先安裝libmcrypt
libmcrypt原始碼安裝方法:
wget
tar -zxvf libmcrypt-2.5.7.tar.gz
cd libmcrypt-2.5.7
./configure –prefix=/usr/local
make
make install
再去編譯安裝就可以了。如有其他報錯,請根據具體報錯解決。
php make編譯pear package php_archive not installed解決方法
php 的編譯時需要依賴pear package ,目前的問題錯誤"pear package php_archive not installed: generated phar will require php's phar extension be enabled.",已經明顯報出這個問題。
因此編譯使用引數 --without-pear 將pear 遮蔽掉編譯安裝後,再進行安裝;同時因為phar 屬於pear的乙個庫 ,所以不將phar關閉掉,同時還會報這個錯誤,
同時需要使用 --disable-phar 編譯引數.
./configure --without-pear --disable-phar
make
make install
成功編譯安裝完成後,再安裝pear
wget
/usr/local/php/bin/php go-pear.phar
7.配置環境變數
vi /etc/profile
path=$path:/usr/local/php/bin
export path
執行命令使得改動立即生效
source /etc/profile
到相應的目錄進行複製
cp data/server/php-1.1.1/php.ini-production /data/serve/php/etc/php.ini
cp /data/server/php/php-fpm.conf.default /data/serve/php/etc/php-fpm.conf
cp /data/server/php/etc/php-fpm.d/www.conf.default /data/serve/php/etc/php-fpm.d/www.conf
cp data/server/php-1.1.1/sapi/fpm/init.d.php-fpm /data/serve/php/etc/init.d/php-fpm
chmod +x /data/serve/php/etc/init.d/php-fpm
啟動php-fpm
/data/serve/php/etc/init.d/php-fpm
軟連線sudo ln -s /data/server/php/bin/php /usr/bin/php (把php命令新增到bin裡面,可以全域性使用)
檢視php.ini位置:
php -i |grep php.ini
centos7 php開發環境安裝 Nginx
1.nginx編譯安裝 2.啟動nginx cd usr local nginx sbin nginx 啟動 nginx s reload 重啟nginx nginx s stop 停止nginx nginx t 驗證配置檔案是否正確 3.測試是否安裝成功 ps ef grep nginx 測試是否...
centos編譯安裝PHP7
在php.net中找到最新穩定版php原始碼 這裡我選擇了最新版php 7.1.9 wget php.tar gz net get php 7.1 9.tar gz from this mirror tar xzvf php.tar gzcd php 2 配置php 解壓了php原始碼之後,我們需要...
centos編譯安裝php7
yum y install openssl openssl devel curl curl devel libjpeg libjpeg devel libpng libpng devel freetype freetype devel pcre pcre devel libxslt libxslt ...