2018-3-16 12周5次课 Nginx负载均衡、ssl原理、秘钥、配置

12.17 Nginx负载均衡


在upstream下定义多个ip

如何查到网站解析的ip?——使用dig命令 需要安装bind-utils

[[email protected] ~]# yum install -y bind-utils
(过程省略)
[[email protected] ~]# dig qq.com

(这是网站的两台服务器ip)

[[email protected] vhost]# vim ld.conf

ip_hash 网站有两台服务器提供服务,想让始终访问一台服务器,用ip_hash

[[email protected] vhost]# curl -x127.0.0.1:80 www.sina.com.cn
This is the default site.##回会去访问默认虚拟主机
[[email protected] vhost]# /usr/local/nginx/sbin/nginx -t
[[email protected] vhost]# /usr/local/nginx/sbin/nginx -s reload
[[email protected] vhost]# curl -x127.0.0.1:80 www.sina.com.cn

(内容太多,是网站源码)







12.18 ssl原理



·浏览器发送一个https的请求给服务器;

·服务器要有一套数字证书,可以自己制作,也可以向组织申请,区别就是自己颁发的证书需要客户端验证通过,才可以继续访问,而使用受信任的公司申请的证书则不会弹出>提示页面,这套证书其实就是一对公钥和私钥;

·服务器会把公钥传输给客户端;

·客户端(浏览器)收到公钥后,会验证其是否合法有效,无效会有警告提醒,有效则会生成一串随机数,并用收到的公钥加密;

·客户端把加密后的随机字符串传输给服务器;

·服务器收到加密随机字符串后,先用私钥解密(公钥加密,私钥解密),获取到这一串随机数后,再用这串随机字符串加密传输的数据(该加密为对称加密,所谓对称加密,就是将数据和私钥也就是这个随机字符串>通过某种算法混合在一起,这样除非知道私钥,否则无法获取数据内容);

服务器把加密后的数据传输给客户端;

·客户端收到数据后,再用自己的私钥也就是那个随机字符串解密;







12.19 生成ssl密钥对


[[email protected] vhost]# cd /usr/local/nginx/conf/    ##公钥和私钥放到conf下
[[email protected] conf]# openssl genrsa -des3 -out tmp.key 2048    ##生成私钥
Generating RSA private key, 2048 bit long modulus
......+++
...................................................+++
e is 65537 (0x10001)
Enter pass phrase for tmp.key:
Verifying - Enter pass phrase for tmp.key:
[[email protected] conf]# openssl rsa -in tmp.key -out arsenal.key
Enter pass phrase for tmp.key:                    ##转换key,取消密码
writing RSA key
[[email protected] conf]# rm -f tmp.key                ##删除
[[email protected] conf]# openssl req -new -key arsenal.key -out arsenal.csr

生成证书请求文件,需要拿这个文件和私钥一起生产公钥文件

[[email protected] conf]# openssl x509 -req -days 365 -in arsenal.csr -signkey arsenal.key -out arsenal.crt
Signature ok
subject=/C=cn/ST=nj/L=nj/O=60/CN=arsenal/[email protected]
Getting Private key
[[email protected] conf]# ls
arsenal.crt  fastcgi.conf          fastcgi_params.default  koi-win             nginx.conf      scgi_params.default   vhost
arsenal.csr  fastcgi.conf.default  htpasswd                mime.types          nginx.conf.bak  uwsgi_params          win-utf
arsenal.key  fastcgi_params        koi-utf                 mime.types.default  scgi_params     uwsgi_params.default







12.20 Nginx配置ssl


[[email protected] conf]# mkdir /data/wwwroot/aming.com
[[email protected] vhost]# cd /usr/local/nginx/conf/vhost/
[[email protected] vhost]# vim ssl.conf

[[email protected] vhost]# /usr/local/nginx/sbin/nginx -t
nginx:[emerg] unknown directive "ssl" in /usr/local/nginx/conf/vhost/ssl.conf:7
nginx:configuration file /usr/local/nginx/conf/nginx.conf test failed

若报错unknown directive “ssl” ,nginx可能不支持ssl,需要重新编译nginx,加上--with-http_ssl_module

[[email protected] vhost]# /usr/local/nginx/sbin/nginx -V
nginx version: nginx/1.12.2
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC)
built with OpenSSL 1.0.2k-fips  26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx
[[email protected] nginx-1.12.2]# ./configure --prefix=/usr/local/nginx --with-http_ssl_module
(编译过程省略)
[[email protected] vhost]# make && make install
(过程省略)
[[email protected] vhost]# /usr/local/nginx/sbin/nginx -V
nginx version: nginx/1.12.2
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC)
built with OpenSSL 1.0.2k-fips  26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --with-http_ssl_module
[[email protected] vhost]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[[email protected] vhost]# /usr/local/nginx/sbin/nginx -s reload
[[email protected] vhost]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[[email protected] vhost]# /usr/local/nginx/sbin/nginx -s reload
[[email protected] vhost]# /usr/local/nginx/sbin/nginx restart
nginx: invalid option: "restart"
[[email protected] vhost]# /etc/init.d/nginx restart
Restarting nginx (via systemctl):                          [  确定  ]
[[email protected] vhost]# netstat -lntp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      4252/nginx: master
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      797/sshd
tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      1083/master
tcp        0      0 0.0.0.0:443             0.0.0.0:*               LISTEN      4252/nginx: master
tcp6       0      0 :::22                   :::*                    LISTEN      797/sshd
tcp6       0      0 ::1:25                  :::*                    LISTEN      1083/master
tcp6       0      0 :::3306                 :::*                    LISTEN      1044/mysqld

(监听端口443启用)

[[email protected] vhost]# cd /data/wwwroot/aming.com/
[[email protected] arsenal.com]# vim index.html
[[email protected] arsenal.com]# curl -x127.0.0.1:443 https://aming.com
curl: (56) Received HTTP code 400 from proxy after CONNECT
[[email protected] arsenal.com]# vim /etc/hosts

[[email protected] arsenal.com]# curl https://aming.com

(证书不可信任,但实际上已经配置成功了)

在windows的hosts中添加192.168.65.128 aming.com

打开浏览器,访问https://aming.com

高级——>自己前往



写到快1点,实在是有点困,笔记有点匆忙,待时间充裕再更新

如有错误,欢迎指正,互相学习,共同进步!!!












原文地址:http://blog.51cto.com/11530642/2087803

时间: 2024-11-07 18:44:17

2018-3-16 12周5次课 Nginx负载均衡、ssl原理、秘钥、配置的相关文章

2018.1.16 6周2次课

六周第二次课(1月16日) 9.4/9.5 sed 9.4/9.5 sed 其实grep工具的功能还不够强大,它实现的只是查找功能,而不能把查找的内容替换.以前用vim操作文档的时候,可以查找也可以替换, 但只限于在文本内部操作,而不能输出到屏幕上.sed工具以及后面要介绍的awk工具就能把替换的文本输出到屏幕上,而且还有其他更丰富的功能.sed和awk都是流式编辑器,是针对文档的行来操作的. sed  '/x/'p filename:匹配x字符 sed  -n  '/x/'p  filenam

2018-3-13 12周2次课 Nginx安装、默认虚拟主机、用户认证、域名重定向

12.6 Nginx安装 [[email protected] ~]# cd /usr/local/src/ [[email protected] src]# wget http://nginx.org/download/nginx-1.12.2.tar.gz (过程省略) [[email protected] src]# tar zxvf nginx-1.12.2.tar.gz [[email protected] src]# cd nginx-1.12.2/ [[email protecte

2018.3.13 12周2次课

十二周二次课(3月13日) 12.6 Nginx安装 12.7 默认虚拟主机 12.8 Nginx用户认证 12.9 Nginx域名重定向 12.6 Nginx安装 下载和解压: cd /usr/local/src wget http://nginx.org/download/nginx-1.13.9.tar.gz tar -zxvf nginx-1.13.9.tar.gz 配置编译选项 cd nginx-1.13.9 ./configure --prefix=/usr/local/nginx

2018-3-14 12周3次课 Nginx访问日志、日志分割、日志不记录静态文件和过期时间

12.10 Nginx访问日志 ·日志格式: [[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf 搜索log_format (虽然红框中有三行,但实际上时一行配置,以分号为结尾) combined_realip 定义日志格式名字,此处定义成什么,那么后面引用时就要写成什么 公网ip(出口ip) ·除了在主配置文件nginx.conf里定义日志格式外,还需要在虚拟主机配置文件中增加 access_log /tmp/1.log co

2018-4-10 15周5次课 lvs负载均衡

18.6 负载均衡集群介绍 ·主流开源软件LVS.keepalived.haproxy.nginx等 ·其中LVS属于4层(网络OSI 7层模型),nginx属于7层,haproxy既可以认为是4层,也可以当做7层使用 ·keepalived的负载均衡功能其实就是lvs ·lvs这种4层的负载均衡是可以分发除80外的其他端口通信的,比如MySQL的,而nginx仅仅支持http,https,mail,haproxy也支持MySQL这种 ·相比较来说,LVS这种4层的更稳定,能承受更多的请求,而n

12.17 Nginx负载均衡 12.18 ssl原理 12.19 生成ssl密钥对 12.20 N

12.17 Nginx负载均衡 [[email protected] ~]# yum install -y bind-utils[[email protected] ~]# dig www.qq.comANSWER SECTION:www.qq.com. 73 IN A 59.37.96.63www.qq.com. 73 IN A 14.17.42.40www.qq.com. 73 IN A 14.17.32.211[[email protected] ~]# curl -x127.0.0.1:

12.17 Nginx负载均衡;12.18 ssl原理;12.19 生产ssl密钥对;12.20 Nginx配置ssl

扩展: 针对请求的uri来代理 http://ask.apelearn.com/question/1049 根据访问的目录来区分后端web http://ask.apelearn.com/question/920 12.17 Nginx负载均衡 1. 安装dig命令: [[email protected] ~]# yum install -y bind-utils 2. 用dig获取qq.com的ip地址: [[email protected] ~]# dig qq.com 3. 创建ld.co

12.17 Nginx负载均衡;12.18 ssl原理;12.19 生产ssl密钥对;12.20 N

12.17 Nginx负载均衡:12.18 ssl原理:12.19 生产ssl密钥对:12.20 Nginx配置ssl 扩展: 针对请求的uri来代理 : http://ask.apelearn.com/question/1049 根据访问的目录来区分后端的web : http://ask.apelearn.com/question/920 nginx长连接 : http://www.apelearn.com/bbs/thread-6545-1-1.html nginx算法分析 : http:/

版本12.1新特性:优先级负载均衡法

如果不希望负载均衡,一组服务器down掉才启用下一组怎么办?在以前版本的实现方法是backup vserver,或者做个反向的monitor.如果实现的组比较多,逻辑上还是有些复杂的. 而在 12.1单独实现了最简单的逻辑:优配先级 新版多了一个按钮 优先级负载均衡 建立vserver时定义下面有几组备份服务器 定义好后插入服务器组,每组直接选定优先级就可以了 版本12.1新特性:优先级负载均衡法 原文地址:http://blog.51cto.com/netscaler/2120602