ngnix安装

一、安装Nginx:

1 : wget下载: http://nginx.org/download/nginx-1.4.2.tar.gz
2 : 进行安装: tar -zxvf nginx-1.6.2.tar.gz
3 : 下载锁需要的依赖库文件:
yum install pcre
yum install pcre-devel
yum install zlib
yum install zlib-devel
4 : 进行configure配置:cd nginx-1.6.2 && ./configure –prefix=/usr/local/nginx 查看是否报错
5 : 编译安装 make && make install
6 : 启动Nginx:
cd /usr/local/nginx目录下: 看到如下4个目录
….conf 配置文件
… html 网页文件
…logs 日志文件
…sbin 主要二进制程序

启动命令:/usr/local/nginx/sbin/nginx -s start 关闭(stop)重启(reload)

成功:查看是否启动(netstat -ano | grep 80)
失败:可能为80端口被占用等。
最终:
浏览器访问地址:http://192.168.1.172:80 (看到欢迎页面即可)

二、使用Nginx:简单与单台Tomcat整合
a) 首先找到nginx.conf文件:vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name localhost:80;
location / {
proxy_pass http://localhost:8080;
}

//…others

}

三、详细使用(nginx就是去配置其文件而已),如下所示:
1. #开启进程数 <=CPU数
2. worker_processes 1;
3.
4. #错误日志保存位置
5. #error_log logs/error.log;
6. #error_log logs/error.log notice;
7. #error_log logs/error.log info;
8.
9. #进程号保存文件
10. #pid logs/nginx.pid;
11.
12. #等待事件
13. events {
14. #每个进程最大连接数(最大连接=连接数x进程数)
15. #每个worker允许同时产生多少个链接,默认1024
16. worker_connections 1024;
17. }
18.
19.
20. http {
21. #文件扩展名与文件类型映射表
22. include mime.types;
23. #默认文件类型
24. default_type application/octet-stream;
25. #日志文件输出格式 这个位置相于全局设置
26. #log_format main ‘remoteaddrremoteaddr−remote_user [timelocal]"timelocal]"request” ’
27. # ‘statusstatusbody_bytes_sent “http_referer” ’  
28. # ‘”
http_referer” ’  28. # ‘”
http_user_agent" "$http_x_forwarded_for”’;
29. #请求日志保存位置
30. #access_log logs/access.log main;
31. #打开发送文件
32. sendfile on;
33. #tcp_nopush on;
34. #连接超时时间
35. #keepalive_timeout 0;
36. keepalive_timeout 65;
37. #打开gzip压缩
38. #gzip on;
39. #设定请求缓冲
40. client_header_buffer_size 1k;
41. large_client_header_buffers 4 4k;
42. #设定负载均衡的服务器列表
43. upstream myproject {
44. #weigth参数表示权值,权值越高被分配到的几率越大
45. #max_fails 当有#max_fails个请求失败,就表示后端的服务器不可用,默认为1,将其设置为0可以关闭检查
46. #fail_timeout 在以后的#fail_timeout时间内nginx不会再把请求发往已检查出标记为不可用的服务器
47. #这里指定多个源服务器,ip:端口,80端口的话可写可不写
48. server 192.168.1.78:8080 weight=5 max_fails=2 fail_timeout=600s;
49. #server 192.168.1.222:8080 weight=3 max_fails=2 fail_timeout=600s;
50. }
51.
52. #第一个虚拟主机
53. server {
54. #监听IP端口
55. listen 80;
56. #主机名
57. server_name localhost;
58. #设置字符集
59. #charset koi8-r;
60. #本虚拟server的访问日志 相当于局部变量
61. #access_log logs/host.access.log main;
62. #对本server”/”启用负载均衡
63. location / {
64. #root /root; #定义服务器的默认网站根目录位置
65. #index index.php index.html index.htm; #定义首页索引文件的名称
66. proxy_pass http://myproject; #请求转向myproject定义的服务器列表
67. #以下是一些反向代理的配置可删除.
68. # proxy_redirect off;
69. # proxy_set_header Host host;  
70. # proxy_set_header X-Real-IP
host;  70. # proxy_set_header X-Real-IP
remote_addr;
71. # proxy_set_header X-Forwarded-For proxy_add_x_forwarded_for;  
72. # client_max_body_size 10m; #允许客户端请求的最大单文件字节数  
73. # client_body_buffer_size 128k; #缓冲区代理缓冲用户端请求的最大字节数,  
74. # proxy_connect_timeout 90; #nginx跟后端服务器连接超时时间(代理连接超时)  
75. # proxy_send_timeout 90; #后端服务器数据回传时间(代理发送超时)  
76. # proxy_read_timeout 90; #连接成功后,后端服务器响应时间(代理接收超时)  
77. # proxy_buffer_size 4k; #设置代理服务器(nginx)保存用户头信息的缓冲区大小  
78. # proxy_buffers 4 32k; #proxy_buffers缓冲区,网页平均在32k以下的话,这样设置  
79. # proxy_busy_buffers_size 64k; #高负荷下缓冲大小(proxy_buffers*2)  
80. # proxy_temp_file_write_size 64k; #设定缓存文件夹大小,大于这个值,将从upstream服务器传  
81. }  
82. location /upload {  
83. alias e:/upload;  
84. }  
85. #设定查看Nginx状态的地址  
86. location /NginxStatus {  
87. stub_status on;  
88. access_log off;  
89. #allow 192.168.0.3;  
90. #deny all;  
91. #auth_basic “NginxStatus”;  
92. #auth_basic_user_file conf/htpasswd;  
93. }  
94. #error_page 404 /404.html;  
95. # redirect server error pages to the static page /50x.html  
96. # 定义错误提示页面  
97. error_page 500 502 503 504 /50x.html;  
98. location = /50x.html {  
99. root html;  
100.    }  
101.    # proxy the PHP scripts to Apache listening on 127.0.0.1:80  
102.    #  
103.    #location ~ .php
proxy_add_x_forwarded_for;  72. # client_max_body_size 10m; #允许客户端请求的最大单文件字节数  73. # client_body_buffer_size 128k; #缓冲区代理缓冲用户端请求的最大字节数,  74. # proxy_connect_timeout 90; #nginx跟后端服务器连接超时时间(代理连接超时)  75. # proxy_send_timeout 90; #后端服务器数据回传时间(代理发送超时)  76. # proxy_read_timeout 90; #连接成功后,后端服务器响应时间(代理接收超时)  77. # proxy_buffer_size 4k; #设置代理服务器(nginx)保存用户头信息的缓冲区大小  78. # proxy_buffers 4 32k; #proxy_buffers缓冲区,网页平均在32k以下的话,这样设置  79. # proxy_busy_buffers_size 64k; #高负荷下缓冲大小(proxy_buffers*2)  80. # proxy_temp_file_write_size 64k; #设定缓存文件夹大小,大于这个值,将从upstream服务器传  81. }  82. location /upload {  83. alias e:/upload;  84. }  85. #设定查看Nginx状态的地址  86. location /NginxStatus {  87. stub_status on;  88. access_log off;  89. #allow 192.168.0.3;  90. #deny all;  91. #auth_basic “NginxStatus”;  92. #auth_basic_user_file conf/htpasswd;  93. }  94. #error_page 404 /404.html;  95. # redirect server error pages to the static page /50x.html  96. # 定义错误提示页面  97. error_page 500 502 503 504 /50x.html;  98. location = /50x.html {  99. root html;  100.    }  101.    # proxy the PHP scripts to Apache listening on 127.0.0.1:80  102.    #  103.    #location ~ .php
{
104. # proxy_pass http://127.0.0.1;
105. #}
106. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
107. #
108. #location ~ .php{  
109.    # root html;  
110.    # fastcgi_pass 127.0.0.1:9000;  
111.    # fastcgi_index index.php;  
112.    # fastcgi_param SCRIPT_FILENAME /scripts
{  109.    # root html;  110.    # fastcgi_pass 127.0.0.1:9000;  111.    # fastcgi_index index.php;  112.    # fastcgi_param SCRIPT_FILENAME /scripts
fastcgi_script_name;
113. # include fastcgi_params;
114. #}
115. # deny access to .htaccess files, if Apache’s document root
116. # concurs with nginx’s one
117. #
118. #location ~ /.ht {
119. # deny all;
120. #}
121. }
122.
123.
124. # another virtual host using mix of IP-, name-, and port-based configuration
125. #
126. #server {
127. #多监听
128. # listen 8000;
129. #主机名
130. # listen somename:8080;
131. # server_name somename alias another.alias;
132.
133. # location / {
134. #WEB文件路径
135. # root html;
136. #默认首页
137. # index index.html index.htm;
138. # }
139. #}
140.
141.
142. # HTTPS server HTTPS SSL加密服务器
143. #
144. #server {
145. # listen 443;
146. # server_name localhost;
147.
148. # ssl on;
149. # ssl_certificate cert.pem;
150. # ssl_certificate_key cert.key;
151.
152. # ssl_session_timeout 5m;
153.
154. # ssl_protocols SSLv2 SSLv3 TLSv1;
155. # ssl_ciphers HIGH:!aNULL:!MD5;
156. # ssl_prefer_server_ciphers on;
157.
158. # location / {
159. # root html;
160. # index index.html index.htm;
161. # }
162. #}
163. }

四.配置tomcat集群负载均衡(这里我们之间配置2个tomcat到nginx里,然后进行测试)
五.其他配置信息文件说明
参考博客1:http://blog.csdn.net/wave_1102/article/details/44475093
参考博客2:http://blog.csdn.net/shimiso/article/details/8690897

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/509224.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ARP-地址解析协议(在实践中深入理解ARP协议)

在同一个网络&#xff08;无特别说明&#xff0c;均指以太网络&#xff09;中进行通信的主机&#xff0c;必须要拥有目标主机的MAC地址才能够正确地将数据发送给目标主机&#xff0c;那么如何知道目标主机的MAC地址呢&#xff1f;可以通过ARP协议。ARP协议就是用来获取目标IP地…

Maven私服

1 Maven私服简介 Maven 私服是一种特殊的Maven远程仓库&#xff0c;它是架设在局域网内的仓库服务&#xff0c;用来代理位于外部的远程仓库&#xff08;中央仓库、其他远程公共仓库&#xff09;。 1.1 下载构件顺序 建立私服后&#xff0c;当局域网内的用户需要某个构件时&a…

nginx配置文件中参数的作用

####默认的nobody&#xff0c;没有访问目录权限&#xff0c;然后指定有权限的用户 ####user nobody; ####一般一个进程足够了&#xff0c;你可以把连接数设得很大。 ####如果有SSL、gzip这些比较消耗CPU的工作&#xff0c;而且是多核CPU的话&#xff0c;可以设为和CPU的数量一…

TCP/IP协议--ARP协议(有了IP地址为什么还需要ARP协议)

首先我们需要先大致了解一下MAC地址&#xff0c;MAC&#xff08;Media Access Control, 介质访问控制&#xff09;地址是烧录在Network Interface Card(网卡,NIC)里的,也叫硬件地址,是由48比特长(6字节),16进制的数字组成.0-23位叫做组织唯一标志符(organizationally unique &a…

Unity3d--跨平台(一)

转自&#xff1a;https://www.cnblogs.com/murongxiaopifu/p/4211964.html前言&#xff1a; 其实小匹夫在U3D的开发中一直对U3D的跨平台能力很好奇。到底是什么原理使得U3D可以跨平台呢&#xff1f;后来发现了Mono的作用&#xff0c;并进一步了解到了CIL的存在。所以&#xff0…

linux定时任务的用法详解

crontab的基本格式&#xff1a; f1  f2  f3  f4  f5  command 分  时 日  月  周  命令 第一列f1代表分钟1~59&#xff1a;当f1为表示每分钟都要执行&#xff1b;为/n表示每n分钟执行一次&#xff1b;为a-b表示从第a分钟到第b分钟这段时间要执行&#xff1b;为a,…

Unity3d-跨平台(二)

转自&#xff1a;http://www.jiandaima.com/blog/archives/945.html 是如何输出到多平台的&#xff1f; 我的第一篇文章&#xff0c;选择了一个不那么简单的主题&#xff0c;但是是我近期比较感兴趣的。这周&#xff0c;我和一个朋友&#xff0c;谈到了游戏开发和Unity3D&#…

lua的作用

轻量级: 它用标准C语言编写并以源代码形式开放&#xff0c;编译后仅仅一百余K&#xff0c;可以很方便的嵌入别的程序里。 可扩展: Lua提供了非常易于使用的扩展接口和机制&#xff1a;由宿主语言(通常是C或C)提供这些功能&#xff0c;Lua可以使用它们&#xff0c;就像是本来就内…

Almost Arithmetical Progression

Description Gena loves sequences of numbers. Recently, he has discovered a new type of sequences which he called an almost arithmetical progression. A sequence is an almost arithmetical progression, if its elements can be represented as: a1  p, where p i…

svn冲突解决方案

解决方法 步骤一、清空svn的队列 1、进入到项目的.svn目录中&#xff0c;查看是否存在wc.db文件 C:\Users\Administrator>D:D:\>cd D:\BBK_SVN\I3_TrunkD:\BBK_SVN\I3_Trunk>cd .svnD:\BBK_SVN\I3_Trunk\.svn>dirVolume in drive D has no label.Volume Serial Nu…

redis集群搭建与配置

redis集群搭建与配置

VS编译快捷键设置

1.编译当前文件----AltZ(生成.编译)&#xff1b; 2.编译当前项目----AltA(生成.仅生成项目)&#xff1b; 3.链接当前项目----AltX(生成.链接)&#xff1b; 4.生成选定内容----AltD(生成.生成选定内容)&#xff1b;

keepalived的安装与添加服务

keepalived的安装与添加服务

做一个“多人在线编辑器”,你会怎么开始

看似只是一个简单的问题&#xff0c;但是其中却隐含了非常多的知识&#xff0c;对于“多人在线编辑器”这么一个产品来说&#xff0c;如果让你来负责设计并开发&#xff0c;你会怎么去开始一步步展开工作&#xff0c;其中主要考察的并不是让你迅速的不假思索的说运用什么技术&a…

Mr. Bender and Square

Description Mr. Bender has a digital table of size n  n, each cell can be switched on or off. He wants the field to have at least c switched on squares. When this condition is fulfilled, Mr Bender will be happy. Well consider the table rows numbered from…

nginx_keepalived配置(转载保存)

文章链接&#xff1a; https://blog.csdn.net/yabingshi_tech/article/details/52038332

IT技术网站

GitChat : http://gitbook.cn/ CSDN: https://blog.csdn.net/nav/career 知乎&#xff1a; https://www.zhihu.com/ 简书&#xff1a; https://www.jianshu.com/ 程序师&#xff1a; http://www.techug.com/ 酷壳&#xff1a;https://www.baidu.com/link…

A Simple Job

描述 Institute of Computational Linguistics (ICL), Peking University is an interdisciplinary institute of science and liberal arts, it focuses primarily on the fundamental researches and applications of language information processing. The research of ICL …

keepalived+nginx保持高可用配置

安装nginx、keepalived nginx安装 keepalived安装与添加服务在/etc/keepalived目录下新建nginx_check.sh&#xff08;两台服务器都需要&#xff09; 配置keepalived.conf: #配置邮箱 global_defs {notification_email {# acassenfirewall.loc# failoverfirewall.loc# sysadmin…

How-To-Ask-Questions-The-Smart-Way

转自&#xff1a;https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/master/README-zh_CN.md 提问的智慧 How To Ask Questions The Smart Way Copyright © 2001,2006,2014 Eric S. Raymond, Rick Moen 本指南英文版版权为 Eric S. Raymond, Rick Mo…