本文共 1479 字,大约阅读时间需要 4 分钟。
nginx使用的三个方面
1.轻量级的web服务器2.反向代理或负载均衡3.缓存服务器nginx使用epoll模型,apache使用传统的select模型,所以nginx在处理静态小文件时能够处理的并发数更多。源代码安装。
检查系统是否有安装pcre(让nginx支持http的rewrite模块),pcre-devel openssl------》基础依赖包openssl-devel 使用https时用到安装过程cd /tuwei/tools/wget tar xf nginx-1.6.3.tar.gzcd nginx-1.6.3useradd nginx -s /sbin/nologin -M ----------->创建nginx服务用户./configure --user=nginx --group=nginx --prefix=/application/nginx-1.6.3/ \--with-http_stub_status_module --with-http_ssl_modulemake&&make install安装完后创建软连接,方便后续使用
ln -s /application/nginx-1.6.3/ /application/nginx启动nginx服务前检查语法,养成好习惯。/application/nginx/sbin/nginx -t出现如下信息[root@node04 html]# /application/nginx/sbin/nginx -t
nginx: the configuration file /application/nginx-1.6.3//conf/nginx.conf syntax is oknginx: configuration file /application/nginx-1.6.3//conf/nginx.conf test is successful如果提示相关相关模块不存在,将模块路径放到模块配置文件中cat /etc/ld.so.conf执行ldconfig 使配置修改生效启动nginx服务
/application/nginx/sbin/nginx检查服务是否启动cat nginx.pid
相当于重启nginx服务创建简单站点
自己创建index.html放到/application/nginx/html目录然后进行访问,nginx默认站点文件为index.html。转载于:https://blog.51cto.com/tuwei/2060747