本文主要是从零基础搭建一个高并发场景下spring cloud 微服务
第一节Nginx 安装搭建
本地环境mac版本 已经安装了brewhome
执行命令:brew install nginx
修改nginx.conf配置文件,对nginx配置比较熟悉的可以跳过本节,
本次主要是引入nginx是为了保证nacos高可用,保证nacos进群架构的搭建
#Nginx的全局变量设置
#user是个主模块指令,指定Nginx Worker进程运行用户以及用户组,默认由nobody账号运行
#user nobody;
#worker_processses是个主模块指令,指定了Nginx开启的进程数.每个Nginx进程平均消耗10M-12M内存.建议指定和cpu的数量一致
worker_processes 4;
#主模块命令,用于定义全局错误日志文件。日志输出级别debug,info,notice,warn,error
#error_log logs/error.log;
#error_log logs/error.log notice;
error_log logs/error.log info;
#pid logs/nginx.pid;
#事件指令,是设定nginx的工作模式和连接数上限
events {
#accept_mutex on; #设置网路连接序列化,防止惊群现象发生,默认为on
#multi_accept on; #设置一个进程是否同时接受多个网络连接,默认为off
#use epoll; #事件驱动模型,select|poll|kqueue|epoll|resig|/dev/poll|eventport
worker_connections 1024; # 最大连接数 ngnix最大连接数=worker_processes*worker_connections
#client_header_buffer_size 4k;#客户端请求头部的缓冲区大小
#open_file_cache max=2000 inactive=60s;#为打开文件指定缓存
#open_file_cache_valid 60s;#设置多久检查一次缓存的有效信息
#open_file_cache_min_uses 1;#设置缓存文件最少使用次数
#keepalive_timeout 60;# 这里是指http层面的,而不是tcp的keepalive
}
#Nginx的http变量设置
http {
#include mime.types;#主模块指令,实现对配置文件所包含的文件的设定
#default_type application/octet-stream;#http模块的核心指令,默认设置定为二进制流
#日志文件的格式的设置
#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;
#client_max_body_size 20m;# 用来设置运行客户端请求的最大的单个文件字节数
client_header_buffer_size 8k;#用来指定客户端请求的header_buffer大小
large_client_header_buffers 4 8k;#用来指定客户端中较大请求头的缓存最大数量和大小
sendfile on;#参与用于开启高效文件传输模式。将tcp_nopush和tcp_nodelay两个指令设置为on用于防止网络阻 塞.其实就是零拷贝的一种实现
tcp_nopush on;
#tcp_nodelay no;
#keepalive_timeout 0;#设置客户端连接保持活动的超时时间,在超过这个时间之后,客户端还么有发送数据,服务端会关闭该连接
keepalive_timeout 65;
#client_header_timeout 20;#设置客户端请求头读取超时时间,在超过这个时间之后,客户端还没有发生任何数据,Nginx将返回408错误
#client_body_timeout 20;#设置客户端主题请求超时时间,在超过这个时间之后,客户端还没有发生任何数据,Nginx将返回408错误
#send_timeout 20;#指定响应客户端的超时时间,设置两个连接活动之间的时间,超过这个时间,客户端没有任何活动,Nginx将关闭连接
#HttpGizp模块设置,支持实时在线压缩输出流数据
#gzip on;#表示用于开启或者关闭压缩模块
#gzip_min_length 1k;#设置允许压缩页面最小字节数
#gzip_buffers 4 16k;#表示申请4个16k的内存作为压缩结果流缓存
#gzip_http_version 1.1;#设置识别http版本协议,默认是1.1
#gzip_comp_level 2;#用来指定压缩比,最小1 处理速度最快 最大9 传输速度快,单处理慢
#gizp_types text/plain application/x-javascript text/css application/xml;#用来表示压缩类型
#gizp_vary on;#可以让前端缓存服务器缓存经过zip压缩的页面
#负载均衡配置 nacos_cluster 负载均衡器名称
upstream nacoscluster{
#ip_hash;#默认支持4种调度算法,1轮询(默认)按照请求时间顺序分配到不同的后端 2.weight:指定轮询权重,值越大访问几率越大
#ip_hash 每个请求按照hash结果分配,fair 根据页面大小或者加载时间长短智能分配,根据后端响应时间长短来分配
#此种算法需要额外模块upstream_fair模块支持.url_hash按访问的url的结果分配请求。nginx本身不支持需要额外的包
#注意 当负载均衡算法为ip_hash时。后端服务器在负载均衡调度种的早状态不能是weight和backup
server 192.168.1.xxx:8849;#设置负载均衡的服务器地址
server 192.168.1.xxx:8850;
server 192.168.1.xxx:8851;
#server 10.250.11.131:8852 down;#设置服务器状态down表示server暂时不参与负载均衡back_up表示预留的备份机器,当其他机器故障也请求
#server 10.250.11.131:8853 max_fail=3 fail_timeout=20s;#允许请求失败的次数默认值为1,
#当超过最大次数时,返回proxy_next_upstream模块定义的错误。fail_timeout表示经历了max_fail失败后
#暂停服务的时间。
}
#虚拟主机配置
server {
listen 8847;#用于指定虚拟主机的服务端口
server_name localhost;#用于指定ip或者域名多个域名使用空格分开
#index index.html index.htm index.php;#用于设置访问的默认首页地址
#root /wwwroot/www.cszhi.com;#用于指定虚拟主机的网页根目录
#charset koi8-r;#设置网页的默认编码格式
#access_log logs/host.access.log main;#用于指定访问日志的存放路径
#location url匹配配置 支持正则表达和条件判断 对动静态页面进行过滤处理,可以实现反向代理
#local后面 这个位置是对值的匹配 比如/ 表示所以路径都匹配
location /nacos/ {
# root html;
# index index.html index.htm;
proxy_pass http://nacoscluster/nacos;
}
#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;
# }
#}
include servers/*;
}
第二季nacos集群搭建
第三节实战 使用robbin实现负载均衡
四个服务 分别是交易trade,订单order,库存stock,账户account
起初的调用是使用 ip+port,这种对于更