学习Nginx(一)

实验目的

通过nginx实现反向代理的功能,类似apache反向代理和haproxy反向代理

工作中用nginx做反向代理和负载均衡的也越来越多了

有些公司从web服务器到反向代理,都使用nginx。nginx在1.9版本加入了tcp的反向代理功能
甚至安全策略:nginx+lua 完全可以搞定。

打开nginx官网

nginx做反向代理,安装命令如下,使用www用户运行nginx

?


1

2

3

4

5

6

7

8

9

useradd -s /sbin/noglogin -M www

wget http://nginx.org/download/nginx-1.9.12.tar.gz

tar zxf nginx-1.9.12.tar.gz

cd nginx-1.9.12

./configure --prefix=/usr/local/nginx-1.9.12 \

--user=www --group=www  --with-http_ssl_module \

--with-http_stub_status_module  --with-file-aio

make && make install

ln -s  /usr/local/nginx-1.9.12/  /usr/local/nginx

检查语法

?


1

2

3

4

[[email protected] nginx-1.9.12]# /usr/local/nginx/sbin/nginx -t

nginx: the configuration file /usr/local/nginx-1.9.12/conf/nginx.conf syntax is ok

nginx: configuration file /usr/local/nginx-1.9.12/conf/nginx.conf test is successful

[[email protected] nginx-1.9.12]#

检查服务器有无其它服务占用80端口,可以关闭了。

?


1

[[email protected] ~]# /usr/local/httpd/bin/apachectl -k stop

配置nginx反向代理,修改主配置文件

gzip是默认关闭的
长连接默认打开的
sendfile 默认打开的

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

[[email protected] conf]# cat nginx.conf

#user  nobody;

worker_processes  1;

#error_log  logs/error.log;

#error_log  logs/error.log  notice;

#error_log  logs/error.log  info;

#pid        logs/nginx.pid;

events {

    worker_connections  10240;

}

http {

    include       mime.types;

    default_type  application/octet-stream;

    #log_format  main  ‘$remote_addr - $remote_user [$time_local] "$request" ‘

    #                  ‘$status $body_bytes_sent "$http_referer" ‘

    #                  ‘"$http_user_agent" "$http_x_forwarded_for"‘;

    #access_log  logs/access.log  main;

    sendfile        on;

    #tcp_nopush     on;

    #keepalive_timeout  0;

    keepalive_timeout  65;

    #gzip  on;

     upstream backend {

                server 10.0.1.105:8080 weight=1  max_fails=3 fail_timeout=30s;

                server 10.0.1.106:8080 weight=2  max_fails=3 fail_timeout=30s;

       }

    

   server {

        listen       80;

        server_name  www.nginx-nmap.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {

            root   html;

            index  index.html index.htm;

            proxy_pass http://backend;

        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html

        #

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80

        #

        #location ~ \.php$ {

        #    proxy_pass   http://127.0.0.1;

        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

        #

        #location ~ \.php$ {

        #    root           html;

        #    fastcgi_pass   127.0.0.1:9000;

        #    fastcgi_index  index.php;

        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;

        #    include        fastcgi_params;

        #}

        # deny access to .htaccess files, if Apache‘s document root

        # concurs with nginx‘s one

        #

        #location ~ /\.ht {

        #    deny  all;

        #}

    }

    # another virtual host using mix of IP-, name-, and port-based configuration

    #

    #server {

    #    listen       8000;

    #    listen       somename:8080;

    #    server_name  somename  alias  another.alias;

    #    location / {

    #        root   html;

    #        index  index.html index.htm;

    #    }

    #}

    # HTTPS server

    #

    #server {

    #    listen       443 ssl;

    #    server_name  localhost;

    #    ssl_certificate      cert.pem;

    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;

    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;

    #    ssl_prefer_server_ciphers  on;

    #    location / {

    #        root   html;

    #        index  index.html index.htm;

    #    }

    #}

}

[[email protected] conf]#

上面设置虚拟主机名www.nginx-nmap.com,以及后端集群组backend,设置了location把任何请求都发给后端backend

上面配置文件里也设置了后端web集群

负载均衡配置时的2个参数:fail_timeout和max_fails
这2个参数一起配合,来控制nginx怎样认为upstream中的某个server是失效的当在fail_timeout的时间内,某个server连接失败了max_fails次,则nginx会认为该server不工作了。
同时,在接下来的 fail_timeout时间内,nginx不再将请求分发给失效的server。
比如失败3次,那么接下来10秒不会之内不会把请求发个这个认为失败的机器。然后过了30秒后,这个机器继续收到探测请求.一般生产中设置为30秒

?


1

2

3

4

upstream backend {

           server 10.0.1.105:8080 weight=1  max_fails=3 fail_timeout=30s;

           server 10.0.1.106:8080 weight=2  max_fails=3 fail_timeout=30s;

  }

  

关于nginx反向代理功能由下面模块提供

 

可以参照下官方个的配置例子

http://nginx.org/en/docs/http/ngx_http_upstream_module.html

官方文档做的挺好

 检测语法,启动或者reload。查看监听状态

?


1

2

3

4

5

6

7

8

[[email protected] conf]# /usr/local/nginx/sbin/nginx -t

nginx: the configuration file /usr/local/nginx-1.9.12/conf/nginx.conf syntax is ok

nginx: configuration file /usr/local/nginx-1.9.12/conf/nginx.conf test is successful

[[email protected] conf]# /usr/local/nginx/sbin/nginx -s reload

[[email protected] conf]# netstat -lntp | grep 80

tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      27141/nginx: master

tcp6       0      0 :::8080                 :::*                    LISTEN      20130/httpd

[[email protected] conf]#

  

客户端windows的hosts文件里配置如下

10.0.1.105 www.nginx-nmap.com

浏览器测试

停止node2的httpd。nginx会自动把请求发送给node1,前端无感知

?


1

2

3

[[email protected] nginx-1.9.12]# systemctl stop httpd

[[email protected] nginx-1.9.12]# systemctl start httpd

[[email protected] nginx-1.9.12]#

启动node2的httpd之后,刷30秒,node2才出现,也就是我们设置的fail_timeout=30的缘故

  

关于会话保持

会话保持,有基于ip的有ip_hash

直接添加这一行即可

重启

?


1

2

3

4

5

[[email protected] conf]# /usr/local/nginx/sbin/nginx -t

nginx: the configuration file /usr/local/nginx-1.9.12/conf/nginx.conf syntax is ok

nginx: configuration file /usr/local/nginx-1.9.12/conf/nginx.conf test is successful

[[email protected] conf]# /usr/local/nginx/sbin/nginx -s reload

[[email protected] conf]#

再次访问就只有node2了

关于nginx的负载均衡算法有很多,自行百度

原文地址:https://www.cnblogs.com/wuhg/p/11447312.html

时间: 2024-10-24 13:45:41

学习Nginx(一)的相关文章

【转】Nginx学习---Nginx&&Redis&&hcache三层缓存架构总结

[原文]https://www.toutiao.com/i6594307974817120782/ 摘要: 对于高并发架构,毫无疑问缓存是最重要的一环,对于大量的高并发,可以采用三层缓存架构来实现,nginx+redis+ehcache Nginx 对于中间件nginx常用来做流量的分发,同时nginx本身也有自己的缓存(容量有限),我们可以用来缓存热点数据,让用户的请求直接走缓存并返回,减少流向服务器的流量 一.模板引擎 通常我们可以配合使用freemaker/velocity等模板引擎来抗住

简单学习nginx

下载nginx-1.7.12.zip,解压,cmd进入解压目录,执行start nginx,启动nginx 访问http://127.0.0.1/ nginx –s stop                       // 停止nginx

学习Nginx反向代理实现简单负载均衡

 Nginx proxy作为Nginx的重要功能,使用nginx proxy基本可以实现一个完整的7层负载均衡.其特色如下:1.功能强大,性能卓越,运行稳定.2.配置简单灵活. Nginx proxy作为Nginx的重要功能,使用nginx proxy基本可以实现一个完整的7层负载均衡. 其特色如下: 1.功能强大,性能卓越,运行稳定. 2.配置简单灵活. 3.能够自动剔除工作不正常的后端服务器. 4.上传文件使用异步模式. 5.支持多种分配策略,可以分配权重,分配方式灵活 配置环境: 三台

零基础学习 nginx + tomcat

操作系统win7 1.首先,搞清楚web 服务器和 tomcat的区别,以及为什么要用nginx+tomcat: 我们平时对j2ee开发的时候使用的是tomcat服务器,tomcat服务器是用来解析servlet动态网页的,比如jsp.而apache web服务器只能处理静态页面,如html,css等. 其实tomcat也可以解析静态页面,但是效率很差,我们在开发的时候因为注重开发,并不用考虑性能问题,所以并不需要Apache.但是在实际应用中,性能问题是很重要的,所以我们要同时使用web服务器

Nginx学习——Nginx进程间的通信

nginx进程间的通信 进程间消息传递 共享内存 共享内存还是Linux下提供的最主要的进程间通信方式,它通过mmap和shmget系统调用在内存中创建了一块连续的线性地址空间,而通过munmap或者shmdt系统调用可以释放这块内存.使用共享内存的优点是当多个进程使用同一块共享内存时,在不论什么一个进程改动了共享内存中的内容后,其它进程通过訪问这段共享内存都可以得到改动后的内容. Nginx定义了ngx_shm_t结构体.用于描写叙述一块共享内存, typedef struct{ //指向共享

安装学习nginx记录

通过查看nginx目录下的log文件,发现80端口没有权限使用 查找文章发现: netstat -aon|findstr ":80" 有的进程ID占用多了80端口,看监听的端口 启动sqlserver服务管理器,报表服务管理: 修改报表服务管理url的端口,把其端口修改为12345 并且修改报表管理器的url,把其端口修改为12345 再次查看端口占用,发现还有,重新启动服务后在检查,80端口已经不被占用

Linux Operation学习------Nginx

1.Nginx是一个高性能的HTTP和反向代理服务器,同时也是一个IMAP/POP3/SMTP代理服务器1.1认识Apache,Nginx,Lighttpd(适用于非Java程序写的页面)Tomcat,Jboss(适用于Java程序写的)用户概念:源码包安装的时候需要建立一个用户,该用户用来执行该服务(如果没有建立,系统默认使用nobody帐号),以防使用root造成不安全的后果,而yum源在装包的时候会自动为系统建立一个用户. 配置文件:/usr/local/nginx/conf/nginx.

Linux学习-Nginx安装

1.安装 yum install -y nginx 2.启动nginx systemctl start nginx 3.重启nginx systemctl restart nginx 4.设置nginx开机自启动 systemctl enable nginx 5.修改配置文件(修改配置文件后需要重启) vi /etc/nginx/nginx.conf 原文地址:https://www.cnblogs.com/zhensha/p/10994704.html

我整理的一份来自于线上的Nginx配置(Nginx.conf),希望对学习Nginx的有帮助

我整理了一份Nginx的配置文件说明,是真正经历过正式线上考验过.如果有优化的地方,也请朋友们指点一二,整理出一份比较全而实用的配置. 主要包含配置:负载均衡配置,页面重定向,转发,HTTPS和HTTP的配置, 缓存优化,错误页面配置等. #user nobody; #工作进程,于CPU核数一致 worker_processes 2; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/erro