您的位置:首页 > 运维架构 > Linux

linux 编译安装php及编译安装mysql常见错误总结及解决办法

2016-08-17 11:05 1176 查看
一、编译安装php常见错误总结及解决办法

错误 1

checking for xml2-config path…

configure: error: xml2-config not found. Please check your libxml2 installation.

解决办法

# yum -y install libxml2-devel

错误 2

checking for BZip2 in default path… not found

configure: error: Please reinstall the BZip2 distribution

解决办法:

# yum install -y bzip2-devel

错误 3

If configure fails try –with-vpx-dir=

configure: error: png.h not found.

解决办法:

# yum -y install libpng-devel

错误 4

If configure fails try –with-xpm-dir=

configure: error: freetype.h not found.

解决办法:

# yum -y install freetype-devel

错误 5

checking for specified location of the MySQL UNIX socket… no

configure: error: Cannot find MySQL header files under /usr/local/mysql.

Note that the MySQL client library is not bundled anymore!

解决办法:

安装mysql

错误 6

configure: error: mcrypt.h not found. Please reinstall libmcrypt.

解决办法:安装libmcrypt

wget ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/attic/libmcrypt/libmcrypt-2.5.7.tar.gz
tar -zxvf libmcrypt-2.5.7.tar.gz

cd libmcrypt-2.5.7

mkdir -p /usr/local/libmcrytp

./configure prefix=/usr/local/libmcrytp/

make

make install
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  linux 架构 php mysql yum