阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

CentOS6编译安装Nginx

124次阅读
没有评论

共计 6399 个字符,预计需要花费 16 分钟才能阅读完成。

安装 libunwind

 

64 位操作系统请先安装 libunwind 库,32 位操作系统不要安装。libunwind 库为基于 64 位 CPU 和操作系统的程序提供了基本的堆栈辗转开解功能,其中包括用于输出堆栈跟踪的 API、用于以编程方式辗转开解堆栈的 API 以及支持 C ++ 异常处理机制的 API。

  1. [root@test software]# tar zxvf libunwind-1.1.tar.gz
  2. [root@test software]# cd libunwind-0.99-alpha
  3. [root@test libunwind-0.99-alpha]# CFLAGS=-fPIC ./configure
  4. [root@test libunwind-0.99-alpha]# make CFLAGS=-fPIC
  5. [root@test libunwind-0.99-alpha]# make CFLAGS=-fPIC install

安装 google-perftools

  1. [root@test software]# tar -zxvf gperftools-2.1.tar.gz
  2. [root@test software]# cd gperftools-2.1
  3. [root@test gperftools-2.1]# ./configure
  4. [root@test gperftools-2.1]# make
  5. [root@test gperftools-2.1]# make install
  6. [root@test gperftools-2.1]# echo “/usr/local/lib” > /etc/ld.so.conf.d/usr_local_lib.conf
  7. [root@test gperftools-2.1]# /sbin/ldconfig

安装 nginx

  1. [root@test software]# tar -zxvf nginx-1.5.7.tar.gz
  2. [root@test software]# cd nginx-1.5.7
  3. [root@test nginx-1.5.7]# ./configure –prefix=/service/nginx –with-http_stub_status_module –with-google_perftools_module –with-pcre –with-http_ssl_module –lock-path=/service/nginx/nginx.lock –pid-path=/service/nginx/nginx.pid
  4. ……………………
  5. Configuration summary
  6. + using PCRE library: /service/pcre
  7. + using system OpenSSL library
  8. + md5: using OpenSSL library
  9. + sha1: using OpenSSL library
  10. + using system zlib library
  11. nginx path prefix: “/service/nginx”
  12. nginx binary file: “/service/nginx/sbin/nginx”
  13. nginx configuration prefix: “/service/nginx/conf”
  14. nginx configuration file: “/service/nginx/conf/nginx.conf”
  15. nginx pid file: “/service/nginx/nginx.pid”
  16. nginx error log file: “/service/nginx/logs/error.log”
  17. nginx http access log file: “/service/nginx/logs/access.log”
  18. nginx http client request body temporary files: “client_body_temp”
  19. nginx http proxy temporary files: “proxy_temp”
  20. nginx http fastcgi temporary files: “fastcgi_temp”
  21. nginx http uwsgi temporary files: “uwsgi_temp”
  22. nginx http scgi temporary files: “scgi_temp”
  23. [root@test nginx-1.5.7]# make
  24. [root@test nginx-1.5.7]# make install

测试 nginx

  1. [root@test sbin]# ./nginx -t
  2. nginx: the configuration file /service/nginx/conf/nginx.conf syntax is ok
  3. nginx: configuration file /service/nginx/conf/nginx.conf test is successful
  4. [root@test sbin]# ./nginx -v
  5. nginx version: nginx/1.5.7
  6. [root@test sbin]#
 
  1. [root@test nginx]# /service/nginx/sbin/nginx
  2. [root@test nginx]# netstat -lanp|grep nginx
  3. tcp 0 0 0.0.0.0:81 0.0.0.0:* LISTEN 27889/nginx
  4. unix 3 [] STREAM CONNECTED 54224 27889/nginx
  5. unix 3 [] STREAM CONNECTED 54223 27889/nginx
  6. [root@test nginx]# ll
  7. total 40
  8. drwx—— 2 nobody root 4096 Nov 26 21:24 client_body_temp
  9. drwxr-xr-x 2 root root 4096 Nov 26 21:38 conf
  10. drwx—— 2 nobody root 4096 Nov 26 21:24 fastcgi_temp
  11. drwxr-xr-x 2 root root 4096 Nov 26 21:23 html
  12. drwxr-xr-x 2 root root 4096 Nov 26 21:24 logs
  13. -rw-r–r– 1 root root 6 Nov 26 21:40 nginx.pid
  14. drwx—— 2 nobody root 4096 Nov 26 21:24 proxy_temp
  15. drwxr-xr-x 2 root root 4096 Nov 26 21:23 sbin
  16. drwx—— 2 nobody root 4096 Nov 26 21:24 scgi_temp
  17. drwx—— 2 nobody root 4096 Nov 26 21:24 uwsgi_temp
  18. [root@test nginx]# cat nginx.pid
  19. 27889
  20. [root@test nginx]# ps -ef|grep nginx
  21. root 27889 1 0 21:40 ? 00:00:00 nginx: master process /service/nginx/sbin/nginx
  22. nobody 27890 27889 0 21:40 ? 00:00:00 nginx: worker process
  23. root 27902 3729 0 21:40 pts/0 00:00:00 grep nginx

关闭 Nginx

  1. /service/nginx/sbin/nginx -s stop

 

访问 81 端口显示

 

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.

推荐阅读

Nginx 实现反向代理和负载均衡的配置及优化 http://www.linuxidc.com/Linux/2013-11/92909.htm

Nginx 做负载均衡报:nginx: [emerg] could not build the types_hash http://www.linuxidc.com/Linux/2013-10/92063.htm

Nginx 负载均衡模块 ngx_http_upstream_module 详述 http://www.linuxidc.com/Linux/2013-10/91907.htm

Nginx+Firebug 让浏览器告诉你负载均衡将请求分到了哪台服务器 http://www.linuxidc.com/Linux/2013-10/91824.htm

Ubuntu 安装 Nginx php5-fpm MySQL(LNMP 环境搭建) http://www.linuxidc.com/Linux/2012-10/72458.htm

Nginx 的详细介绍 :请点这里
Nginx 的下载地址 :请点这里

正文完
星哥说事-微信公众号
post-qrcode
 
星锅
版权声明:本站原创文章,由 星锅 2022-01-20发表,共计6399字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中