Chinaunix首页 | 论坛 | 博客
  • 博客访问: 405194
  • 博文数量: 80
  • 博客积分: 885
  • 博客等级: 准尉
  • 技术积分: 917
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-02 11:43
个人简介

人生就是一次旅行,生活就是艺术,人人都是手艺人.

文章分类

全部博文(80)

文章存档

2023年(1)

2022年(5)

2019年(3)

2018年(1)

2017年(6)

2016年(4)

2014年(8)

2013年(20)

2012年(9)

2010年(3)

2009年(17)

2008年(3)

我的朋友

分类: PHP

2013-05-20 14:42:45

经常在安装 php 5.4  的时候出现以下错误:
checking for MySQL UNIX socket location... no
configure: error: Cannot find libmysqlclient under /usr.
Note that the MySQL client library is not bundled anymore!
解决方法:
#mysql_config 
查看mysql 的安装目录 例如找出mysql安装在/usr/loca/mysql
#cd /usr/local/mysql/mysql/
#ln -s libmysqlclient.so.15.0.0 libmysqlclient_r.so
返回php-5.4目录
#./configure --prefix=/usr/local/php5 --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-apxs2=/usr/local/apache2/bin/apxs --with-gd=/usr/local/modules/gd --with-jpeg-dir=/usr/local/jpeg --with-zlib-dir=/usr --with-png-dir=/usr --with-freetype-dir=/usr/local/freetype --with-xmlrpc --enable-force-cgi-redirect --enable-calendar --enable-dba --enable-sockets --enable-mbstring=all
#make
#make install

阅读(2633) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~