博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS7系统Nginx安装
阅读量:6252 次
发布时间:2019-06-22

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

hot3.png

1、下载nginx,官方网站https://nginx.org

wget https://nginx.org/download/nginx-1.14.0.tar.gz

2、下载Nginx Sticky Module,官方网站https://bitbucket.org/nginx-goodies/nginx-sticky-module-ng

wget https://bitbucket.org/nginx-goodies/nginx-sticky-module-ng/get/08a395c66e42.zip

3、解压软件包

tar xfz nginx-1.14.0.tgzunzip 08a395c66e42.zip

4、安装nginx

./configure  --with-http_ssl_module  --with-http_gzip_static_module --add-module=/home/apuser/nginx-goodies-nginx-sticky-module-ng-08a395c66e42/makemake install

5、启动nginx

/usr/local/nginx/sbin/nginx

6、查看nginx进程

ps aux | grep nginxroot      5413  0.0  0.0  45896  1192 ?        Ss   14:42   0:00 nginx: master process /usr/local/nginx/sbin/nginxnobody    5414  0.0  0.0  48376  2044 ?        S    14:42   0:00 nginx: worker processroot      5420  0.0  0.0 112664   972 pts/0    S+   14:42   0:00 grep --color=auto nginx

 

注:安装过程中如果出现:configure: error: SSL modules require the OpenSSL library

解决方法,执行以下命令:

yum -y install openssl openssl-devel

注:安装过程中如果出现:error: the HTTP rewrite module requires the PCRE library

解决方法,执行以下命令:

yum -y install pcre-devel

 

链接:

 

转载于:https://my.oschina.net/u/209161/blog/1930822

你可能感兴趣的文章
编译php5.4的时候出现错误----configure: error: in `/usr/local/src/php540/php-5.4.0':
查看>>
机器学习编程01_线性回归
查看>>
Markdown语法
查看>>
《CSS世界》读书笔记(十六)
查看>>
初入前端
查看>>
(回文串 )Best Reward -- hdu -- 3613
查看>>
最少拦截系统------LCS--------动态规划
查看>>
关于EOF的种种。
查看>>
h5 拍照上传 代码
查看>>
javascript 通用定义
查看>>
语文文法
查看>>
SSM(Spring,SpringMVC,MyBatis)用户登录
查看>>
关于SQL注入,你应该知道的那些事
查看>>
jquery bxslider幻灯片样式改造
查看>>
常用JavaScript操作页面元素的方法
查看>>
学习进度条 12/18 到12/23
查看>>
varnish学习以及CDN的原理
查看>>
服务器配置 隐藏apache和php的版本
查看>>
将数据表中的数据导出到Excel、将Excel中的数据导入到数据表
查看>>
数据恢复系列(1)~恢复方案制定
查看>>