本文主要是介绍redhat linux安装nginx1.7.4版(非常简单),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、检查环境
是否安装了gcc pcre pcre-devel zlib-devel openssl openssl-devel gd gd-devel等
否则第3步会make时会提示make: *** No rule to make target `build', needed by `default'. Stop.错误(缺少依赖包)
可去http://www.rpmfind.net/linux/rpm2html/search.php?query=openssl-devel&submit=Search+...&system=&arch=网址下载rpm包
rpm -ivh xxx --nodeps --force强制安装包时注意提示:error: unpacking of archive failed: cpio: Bad magic (说明安装包的版本不符合系统,需找对应版本的rpm包)
rpm -qa | grep "软件或者包的名字" 查询或yum list installed | grep "软件名或者包名"查询
centos下安装:
- yum -y install gcc pcre pcre-devel zlib-devel openssl openssl-devel gd gd-deve
ubuntu下安装:
- apt-get install zlib
- apt-get install openssl libssl-dev
- apt-get install libpcre3 libpcre3-dev
- apt-get install zlib1g-dev
2、下载nginx并解压
wget https://nginx.org/download/nginx-1.7.4.tar.gz
tar -zxvf nginx-1.7.4.tar.gz
3、 编译并安装nginx
cd nginx-1.7.4
./configure --prefix=/usr/local/nginx //配置
make //编译
make install //安装
a、如果提示make: *** No rule to make target `build', needed by `default'. Stop.错误,安装好依赖后,需要重新执行./configure --prefix=/usr/local/nginx配置
b、如果想使用stream模块,代理tcp端口则需要nginx-1.9.x及以上版本。并且使用配置./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-stream
tcp端口代理示例如下:
stream {upstream test_socket {#hash $remote_addr consistent;server 123.123.123.123:1884 weight=5 max_fails=3 fail_timeout=30s;}server{listen 1884;proxy_connect_timeout 1s;proxy_timeout 3s;proxy_pass test_socket;}
}
写到http模块后面(与http模块同级),上图代表把本地1884端口代理到123.123.123.123:1884端口上
4、nginx命令添加到环境变量(可不做)
vim ~/.bash_profile (添加位置如下图)
source ~/.bash_profile (使环境变量生效)
5、添加到开机启动(可不做)
vim /etc/rc.local (添加的内容如下图)
6、启动nginx
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf //启动并指定配置文件
注意:如果启动出现
则说明找不到admin用户(我把root账户名称改成了admin)
则需要把修改nginx.conf配置文件,修改user行。
7、验证
curl localhost (结果如下图)
验证成功后,根据业务修改nginx.conf,之后使用
- nginx -t 检查配置文件正确性
- nginx -s reload 重新加载配置文件
其他命令:
./nginx -s stop 此方式停止步骤是待nginx进程处理任务完毕进行停止。
./nginx -s quit 此方式相当于先查出nginx进程id再使用kill命令强制杀掉进程。
这篇关于redhat linux安装nginx1.7.4版(非常简单)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!