博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
库安装
阅读量:6413 次
发布时间:2019-06-23

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

一、安装pcre-8.31

1、./configure --prefix=$HOME/libs/pcre-8.31
2、make
3、make install
二、安装nginx-1.2.4
1、./configure --prefix=$HOME/apps/nginx-1.2.4/nginx --with-
pcre=/home/dmpush/libs/pcre-8.31 --with-http_stub_status_module --with-http_gzip_static_module
2、make
3、make install
启动nginx
4、cd nginx/sbin
5、
nginx -s stop // 停止nginx
nginx -s reload // 重新加载配置文件
nginx -s quit // 退出nginx
查看是否启动:netstat -ntlp
出现问题: nginx: [emerg] bind() to 0.0.0.0:80 failed (13: Permission denied)
是因为端口号的问题,在Linux中1024以下的端口号都需要root用户才能使用
所以普通用户启动程序绑定会报出权限问题,我这里是把Nginx绑定的端口号改为8888(大于1024)
6、打开IE:在地址栏输入:http://192.168.21.23:8888/

就能看到结果,表示安装成功:

Welcome to nginx!
If you see this page, the nginx web server is successfully installed and working. Further
configuration is required.

For online documentation and support please refer to nginx.org.

Commercial support is available at nginx.com.

Thank you for using nginx.

——————————————————————————————————————

三、安装libevent(事件触发)
nginx安装的时候依赖于libevent 这是一个非常著名的API 这个编程库用于提升网络event事件(epoll)之类
的这样一个库.主要用于提升性能.
1、下载libevent:https://github.com/libevent/libevent/downloads
2、./configure
3、make
4、make install

四、安装boost1_51

1、./bootstrap.sh
2、./b2 install --prefix=PREFIX
3、设置环境变量
例子程序在$HOME/libs/boost_1_51_0/tools/build/v2下面example

转载地址:http://vtdra.baihongyu.com/

你可能感兴趣的文章
libevent 笔记
查看>>
PHP实现人人OAuth登录和API调用
查看>>
redis源码笔记 - initServer
查看>>
FindBugs工具常见问题
查看>>
ECSHOP报错误Deprecated: preg_replace(): The /e modifier is depr
查看>>
【iOS】iOS之Button segue弹出popOver消除(dismiss)问题
查看>>
java多线程系列5-死锁与线程间通信
查看>>
数据库分库分表
查看>>
腾讯Hermes设计概要——数据分析用的是列存储,词典文件前缀压缩,倒排文件递增id、变长压缩、依然是跳表-本质是lucene啊...
查看>>
小程序模板嵌套以及相关遍历数据绑定
查看>>
Systemd入门教程:命令篇(转)
查看>>
java随机范围内的日期
查看>>
spring事务学习(转账案例)(二)
查看>>
[官方教程] [ES4封装教程]1.使用 VMware Player 创建适合封装的虚拟机
查看>>
http协议与http代理
查看>>
【iOS开发-91】GCD的同步异步串行并行、NSOperation和NSOperationQueue一级用dispatch_once实现单例...
查看>>
Redis+Spring缓存实例
查看>>
Storm集群安装详解
查看>>
centos7.x搭建svn server
查看>>
原码编译安装openssh6.7p1
查看>>