命令:(进行)/install/libiconv-1.14/configure --prefix=/opt/libiconv
命令:(进行翻译)make
命令:(进行编译安装)make install
命令:(切换)cd /install/
命令:(下载)
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun测试数据/repo/epel-6.repo wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun测试数据/repo/epel-7.repo命令:(进行配置)
./configure --prefix=/opt/php-5.5.32 --with-mysql=mysqlnd --with-pdo-mysql=mysqlnd --with-iconv-dir=/opt/libiconv --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-fpm --enable-mbstring --with-mcrypt --with-gd \ --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-soap --enable-short-tags --enable-static --with-xsl --with-fpm-user=nginx --with-fpm-group=nginx --enable-ftp --enable-opcache=no ./configure --prefix=/opt/php-5.5.32 --with-mysql=mysqlnd --with-pdo-mysql=mysqlnd --with-iconv-dir=/opt/libiconv --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-fpm --enable-mbstring --with-mcrypt --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-soap --enable-short-tags --enable-static --with-xsl --with-fpm-user=nginx --with-fpm-group=nginx --enable-ftp --enable-opcache=no=============================================================================
注:说明:LNMP架构部署时,如果mysql服务和web服务不在一台主机上,php配置参数需要进行调整
--with-mysql=/application/mysql/ => --with-mysql=mysqlnd
PHP扩展参数:(配置没有问题可以省略以下配置参数,以下参数和PHP优化有关)
--with-curlwrappers --enable-zip --enable-zend-multibyte \命令:(查看)ll php.ini*
-rw-r--r--. 1 1001 1001 69236 2016-02-02 21:33 php.ini-development -rw-r--r--. 1 1001 1001 69266 2016-02-02 21:33 php.ini-production(php.ini-developments是开发人员调试用配置文件,php.ini-production是生产常见所有配置文件)
命令:(复制)cp php.ini-production /opt/php/lib/php.ini
php.ini-production 与 php.ini-development 文件区别关系对比
扩展:文件比较命令 diff zdiff vimdiff windows上的文件比较
命令:(切换)cd /application/php/etc/
命令:(切换)cp php-fpm.conf.default php-fpm.conf
(以下内容看情况)
# 编译安装PHP时,若配置未正确指定PHP进程用户信息,可以修改PHP文件进行调整
sed -i 's#user = www#user = nginx#g;s#group = www#group = nginx#g' /application/php-5.5.32/etc/php-fpm.conf
8 、启动php-fpm程序
命令:(启动)/application/php/sbin/php-fpm
命令:(进行检查端口)lsof -i :9000 <--- 确认php 9000端口是否正确启动
命令:(进行检查程序)ps -ef|grep php-fpm
相关推荐:编程视频课程
以上就是php5.5怎么安装的详细内容!
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did54507
php5.5怎么安装
阅读:44次