首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 企业软件 > 行业软件 >

ubuntu ngnix 筹建

2012-06-30 
ubuntungnix 搭建1. download the source code ?? http://nginx.org/2. tar -xvf nginx-1.0.6.tar.gz?3. c

ubuntu ngnix 搭建

1. download the source code

?? http://nginx.org/

2. tar -xvf nginx-1.0.6.tar.gz

?

3. cd nginx-1.0.6

?

4. ./configure

???? 此时我这出现了一个错误 大意是:mod_proxy 需要PCRE 库,而这个库没有安装,于是从www.pcre.org

下载源码安装pcre

5. make

?

6. sudo make install

?

测试:

?

此时nginx默认安装在了/usr/local/nginx/ 下面

?

启动:? sudo /usr/local/nginx/sbin/nginx

?

但是报错: error while loading shared libraries: libpcre.so.0 cannot open shared object file: No such file or directory

我明明安装了怎么还没找到,肯定是这个动态链接库没有被找到。而真正的链接库在: /usr/local/lib/libpcre.so.0

网上搜索到答案后是在/lib下再创建一个符号链接就可以了

sudo ln -s /usr/local/lib/libpcre.so.0 /lib

再启动就可以了,在firefox中输入: localhost

就可以看到:

Welcome to nginx!

?

?

?

热点排行