博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
安装PHP7.1.9 问题
阅读量:5363 次
发布时间:2019-06-15

本文共 1399 字,大约阅读时间需要 4 分钟。

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

yum -y install gcc

yum -y install libpng

yum -y install libpng-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

 

 

 

 

 
  
 
 

转载于:https://www.cnblogs.com/zhizhong/p/7771354.html

你可能感兴趣的文章
《演说之禅》I & II 读书笔记
查看>>
thinkphp3.2接入支付宝支付接口(PC端)
查看>>
response和request
查看>>
【转】在Eclipse中安装和使用TFS插件
查看>>
C#中Monitor和Lock以及区别
查看>>
【NOIP2017】奶酪
查看>>
5.6.3.7 localeCompare() 方法
查看>>
Linux下好用的简单实用命令
查看>>
描绘应用程序级的信息
查看>>
php环境搭建脚本
查看>>
php 编译常见错误
查看>>
MES架构
查看>>
高性能JavaScript-JS脚本加载与执行对性能的影响
查看>>
hdu 2767(tarjan)
查看>>
sklearn之分类模型混淆矩阵和分类报告
查看>>
MySQL各存储引擎
查看>>
项目--简单导出CSV文件
查看>>
Oracle session相关数据字典(一)
查看>>
织梦文章内容提取第一张或者多张图片输出
查看>>
C#用正则表达式 获取网页源代码标签的属性或值
查看>>