码迷,mamicode.com
首页 > Web开发 > 详细

安装PHP7.1.9 问题

时间:2017-11-02 13:21:31      阅读:347      评论:0      收藏:0      [点我收藏+]

标签:bst   pen   soap   prefix   分享   ssl   img   ima   命令   

centos 7 安装PHP 7.1.9 过程
 
验证命令
./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/bin/mysql --enable-bcmath --with-curl --enable-soap --enable-mbstring --with-mcrypt --with-gd --with-openssl --enable-sockets --enable-fastCGI --enable-fpm 
 
错误汇总
 
  please reinstall  libxml2 ->  yum -y install libxml2*
    please reinstall  openssl ->  yum -y install openssl*
 
 
 
 技术分享
 --> yum -y install curl-devel
 
please reinstall  mcrypt -->  
CentOs7默认的yum源没有 libmcrypt-devel包  只能借助epel的yum源,所以先安装epel,再安装libmcrypt
依次执行

yum install -y epel-release
yum install -y libmcrypt-devel

 

 

技术分享

-> 使用 ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-pdo-mysql=/usr/bin/mysql --enable-bcmath --with-curl --enable-soap --enable-mbstring --with-mcrypt --with-gd --with-openssl --enable-sockets --enable-cgi --enable-fpm

 

no found mysql_config  ->  

查看mysql 安装情况 

rpm -qa|grep mysql

如果没有安装mysql-devel 安装  yum install mysql-devel 就有了 

 

PDO_MYSQL configure failed, MySQL 4.1 needed

----->  --with-pdo-mysql=mysqlnd

./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-pdo-mysql=mysqlnd --enable-bcmath --with-curl --enable-soap --enable-mbstring --with-mcrypt --with-gd --with-openssl --enable-sockets --enable-cgi --enable-fpm

 

 

 

 

 
  
 
 

安装PHP7.1.9 问题

标签:bst   pen   soap   prefix   分享   ssl   img   ima   命令   

原文地址:http://www.cnblogs.com/zhizhong/p/7771354.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!