首页 > Web开发 > 详细

安装PHP7.1.9 问题

时间:2017-11-02 13:00:04      阅读:282      评论:0      收藏:0      [点我收藏+]
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 问题

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!