Nginx
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx相关的知识,希望对你有一定的参考价值。
nginx安装:
- 停止原有web服务器:
- 添加普通用户账号来运行nginx:
[[email protected] nginx-1.8.1]# useradd -M -s /sbin/nologin nginx -
解压并安装Nginx:
[[email protected] nginx-1.8.1]# tar xf nginx-1.8.1.tar.gz
[[email protected] nginx-1.8.1]# cd nginx-1.8.1
[[email protected] nginx-1.8.1]# ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_stub_status_module --with-http_ssl_module
make && make install--prefix=/usr/local/nginx #指定安装路径
--with-http_stub_status_module #声明启用service status页,默认不启用
--with-http_ssl_module #启用ssl模块,以支持https请求 -
启动:
[[email protected] nginx-1.8.1]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf -
查看启动状态:
[[email protected] nginx-1.8.1]# netstat -tanp|grep 80
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 5535/nginx - 测试主页是否可以访问:
/usr/local/nginx/sbin/nginx -s stop停止
/usr/local/nginx/sbin/nginx 启动
nginx -s reopen
nginx -s reload
nginx -t
mv 旧文件名 新文件名
以上是关于Nginx的主要内容,如果未能解决你的问题,请参考以下文章