一台服务器上需要安装两个版本的php需要怎么办呢?
大体上的安装方式还是一样,只是把对应的编译目录与名称通过版本号加以区分
这里只列出需要注意及修改的地方
1.在执行编译命令时有两个路径需要修改,主要是修改编译路径及配置文件的路径不要冲突了,根据自已原有环境的部署情况区分,
php70
./configure --prefix=/usr/local/php70 --with-config-file-scan-dir=/usr/local/php70/etc/ --enable-inline-optimization --enable-opcache --enable-session --enable-fpm --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-fpm-user=www --with-fpm-group=www --with-pdo-sqlite --with-sqlite3 --with-gettext --enable-mbregex --enable-mbstring --enable-xml --with-iconv --with-mcrypt --with-mhash --with-openssl --enable-bcmath --enable-soap --with-xmlrpc --with-libxml-dir --enable-pcntl --enable-shmop --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-sockets --with-curl --with-zlib --enable-zip --with-bz2 --with-gd --enable-gd-native-ttf --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-readline --enable-maintainer-zts
php73
./configure --prefix=/usr/local/php73 --with-config-file-path=/usr/local/php73/etc/ --enable-fpm --with-fpm-user=nginx --with-fpm-group=nginx --enable-inline-optimization --disable-debug --disable-rpath --enable-shared --enable-soap --with-xmlrpc --with-openssl --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-freetype-dir --enable-gd-jis-conv --with-gettext --with-gmp --with-mhash --enable-json --enable-mbstring --enable-mbregex --enable-mbregex-backtrack --with-onig --enable-pdo --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-zlib-dir --with-pdo-sqlite --with-readline --enable-session --enable-shmop --enable-simplexml --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
2.建立软连接时不用与原有的冲突,可以根据对应的版本号重命名(比如php73版),对于不常用的(phpize,php-config)也可以不创建软链,需要用到的时候使用绝对路径引用
ln -sf /usr/local/php/sbin/php-fpm /usr/bin/php-fpm73
ln -sf /usr/local/php/bin/php /usr/bin/php73
ln -sf /usr/local/php/bin/phpize /usr/bin/phpize73
ln -sf /usr/local/php/bin/php-config /usr/bin/php-config73
ln -sf /usr/local/php/bin/php-cgi /usr/bin/php-cgi73
3.加入进程管理时,进程名称要修改
vim /etc/init.d/php-fpm73
4.调用的时候就根据不同的名称调用不同的版本
php70 -v
php73 -v