分页: 1 / 1

Ubuntu中安装Nginx+php+mysql+memcache+eaccelerator笔记.

发表于 : 2009-10-09 22:43
joyanhui
基本上是参考张宴的http://blog.s135.com/nginx_php_v5/ 来操作的
但是对方主要是写的在CentOS 和RedHat 的安装方法,在Ubuntu下有很多不同之处.

在Ubuntu9.10 Beta下安装成功

1. 安装php之前 应该先安装php的支持库,能避免后面出现的数个错误.
主要有

代码: 全选

apt-get install libxml2 libldap-2.4-2 libmhash2 libmysqlclient16 curl libpng3 libjpeg62 libsasl2-2 libmcrypt4 libltdl7 autoconf
2.安装openssl

代码: 全选

sudo apt-get install libssl0.9.8
sudo apt-get install libssl-dev
sudo apt-get install openssl
3.configure: error: Please reinstall the libcurl distribution -
easy.h should be in <curl-dir>/include/curl/

代码: 全选

apt-get install curl
apt-get install libcurl3
apt-get install libcurl4-gnutls-dev
4.
Configure: error: Cannot find MySQL header files under /usr.
Note that the MySQL client library is not bundled anymore!

代码: 全选

apt-get install libmysql++-dev
5.configure: error: freetype.h not found.

代码: 全选

apt-get install libfreetype6-dev
6.checking for termcap functions library… configure: error: No curses/termcap library found

代码: 全选

apt-get install libncurses5-dev
7.安装libpng/libjpeg

代码: 全选

apt-get install libpng12-dev
apt-get install libjpeg62-dev

8.安装autoconf 不安装的话,memcache等扩展无法编译

代码: 全选

apt-get install autoconf
9.编译php的时候 configure: error: sasl.h not found!

不知道 问题在什么地方,只好放弃--with-ldap-sasl

Re: Ubuntu中安装Nginx+php+mysql+memcache+eaccelerator笔记.

发表于 : 2009-11-10 11:59
jasonyu
apt-get install libsasl2-dev

Re: Ubuntu中安装Nginx+php+mysql+memcache+eaccelerator笔记.

发表于 : 2010-01-13 17:27
neovvv
我也在做这个工作,等完成后会把详细的贴出来

Re: Ubuntu中安装Nginx+php+mysql+memcache+eaccelerator笔记.

发表于 : 2010-01-22 8:05
joyanhui
谢谢 二楼的