nginx安装.txt

一、 http://nginx.org/download/
下载对应版本:wget http://nginx.org/download/nginx-1.5.9.tar.gz
tar -zxvf nginx- 1.5.9.tar.gz
. /configure --prefix=/usr/local/nginx
make && make install
如果安装过程遇到问题:
 
错误为:./ configure: error: the HTTP rewrite module requires the PCRE library.
yum -y install prce-devel
错误为:
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Setting up Install Process
No package prce-devel available.
Error: Nothing to do
 
错误为:./ configure: error: the HTTP cache module requires md5 functions
from OpenSSL library. You can either disable the module by using
--without-http-cache option, or install the OpenSSL library into the system,
or build the OpenSSL library statically from the source with nginx by using
--with-http_ssl_module --with-openssl=<path> options.
 
 
yum -y install openssl openssl-devel
再安装nginx
 
二、启动 停止等操作
/usr/nginx/sbin/nginx (/usr/nginx/sbin/nginx -t 查看配置信息是否正确)
从容停止Nginx:
kill -quit 主进程号
快速停止Nginx:
kill -term 主进程号
强制停止Nginx:
pkill - 9 nginx
 
进入: /usr/java/nginx位置
下载 nginx: wget http://nginx.org/download/nginx-1.8.0.tar.gz
下载 openssl : wget http://www.openssl.org/source/openssl-fips-2.0.9.tar.gz
下载 zlib : wget http://zlib.net/zlib-1.2.8.tar.gz
下载 pcre : wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.38.tar.gz
 
如果没有安装c++编译环境,还得安装,通过yum install gcc-c++完成安装
 
下一步,编译安装
openssl :
 
[root @localhost] tar zxvf openssl-fips-2.0.9.tar.gz
 
[root @localhost] cd openssl-fips-2.0.9
 
[root @localhost] ./config && make && make install
pcre:
 
 
 
[root @localhost] tar zxvf pcre-8.36.tar.gz
 
[root @localhost] cd pcre-8.36
 
[root @localhost] ./configure && make && make install
 
 
 
zlib:
 
[root @localhost]tar zxvf zlib-1.2.8.tar.gz
 
[root @localhost] cd zlib-1.2.8
 
[root @localhost] ./configure && make && make install
 
 
 
最后安装nginx
[root @localhost] mkdir nginx
 //copy nginx.conf
[root @localhost]tar zxvf nginx-1.8.0.tar.gz
 
[root @localhost] cd nginx-1.8.0
 
[root @localhost] ./configure && make && make install
 
启动nginx
 
/usr/local/nginx/sbin/nginx
 
出现错误提示
[root @localhost lib]# error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
 
原因 在RedHat 64位机器上nginx读取的pcre文件为/lib64/libpcre.so.1文件,默认安装pcre时libpcre.so文件安装在/usr/local/lib/目录下,所以输入/opt/nginx/sbin/nginx -V 找不到文件路径!!
 
1.首先确定安装了pcre.
 
2.切换路径: cd /usr/local/lib 执行 ln -s /usr/local/lib/libpcre.so.1 /lib64/
 
3.root权限下添加软链接 /usr/local/lib/libpcre.so.1 到 /lib64/ : ln -s /usr/local/lib/libpcre.so.1 /lib64/

转载于:https://www.cnblogs.com/pengcan/p/7273993.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值