本文共 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;