博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx 1.8.1安装使用
阅读量:6535 次
发布时间:2019-06-24

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

下载nginx安装包

wget -O 

解压

tar -xvf nginx-1.8.1.tar.gz

或者可以解压到制定目录

tar -xvf nginx-1.8.1.tar.gz -C /usr/local/nginx

下载pcre

下载zlib

下载openssl

解压出来下载好的安装包

先安装openssl

[root@jw openssl-fips-2.0.2]# ./config 

[root@jw openssl-fips-2.0.2]# echo $?

0

[root@jw openssl-fips-2.0.2]# make && make install

然后安装zlib

源码编译安装要有一个习惯,执行echo $? 查看编译是否有报错

安装pcre

[root@jw pcre-8.21]# ./configure

[root@jw pcre-8.21]# make && make install

最后安装nginx

[root@jw nginx-1.8.1]# ./configure --with-pcre=../pcre-8.21 --with-zlib=../zlib-1.2.7 --with-openssl=../openssl-fips-2.0.2

[root@jw nginx-1.8.1]# make && make install

至此安装nginx完成

启动nginx服务

[root@jw sbin]# ./nginx ----启动服务

[root@jw sbin]# lsof -i :80   ------查看80端口是否侦听

COMMAND   PID   USER   FD   TYPE DEVICE SIZE/OFF NODE NAME

nginx   11848   root    6u  IPv4  20493      0t0  TCP *:http (LISTEN)

nginx   11849 nobody    6u  IPv4  20493      0t0  TCP *:http (LISTEN)

[root@jw sbin]# netstat -antup | grep 80  ------查看80端口是否侦听

tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      11848/nginx         

[root@jw sbin]# ps -ef | grep nginx  -----查看nginx进程 一个主,一个worker进程;

root      11848      1  0 01:54 ?        00:00:00 nginx: master process ./nginx

nobody    11849  11848  0 01:54 ?        00:00:00 nginx: worker process

root      11854   1054  0 01:55 pts/0    00:00:00 grep nginx

访问nginx网页

nginx默认页面;如果无法访问,关闭iptables;关闭selinux;

本文转自 rm_rf_db 51CTO博客,原文链接:http://blog.51cto.com/12185273/1983629,如需转载请自行联系原作者
你可能感兴趣的文章
SNMP安全配置的两种方法(也可同一时候兼顾配置两种方法)
查看>>
react-native 常见操作 及 git 补充
查看>>
MongoDB 自己定义函数
查看>>
Summary Day30
查看>>
逆向输出回环数组
查看>>
自己动手,实现“你的名字”滤镜
查看>>
高清摄像头MIPI CSI2接口浅解【转】
查看>>
C# CancellationTokenSource和CancellationToken的实现
查看>>
PCIE BAR空间
查看>>
winform命名规范
查看>>
如何用数学课件制作工具画角平分线
查看>>
Linux chmod命令及权限含义
查看>>
jrtplib编译指南
查看>>
VS2015 中统计整个项目的代码行数
查看>>
Anaconda入门使用指南
查看>>
UWP控件与DataBind
查看>>
bash: php: command not found
查看>>
XVIII Open Cup named after E.V. Pankratiev. Eastern Grand Prix
查看>>
数据恢复软件如何换机使用?
查看>>
《高性能mysql》到手
查看>>