- SpringCloud Alibaba - Nacos搭建及服务注册发现
- SpringCloud Alibaba - openfeign服务间相互调用
- SpringCloud Alibaba - Seata分布式事务搭建及应用
- SpringCloud Alibaba - 整合gateway服务网关
- SpringCloud Alibaba - 搭建Sentinel监控流量控制
Github地址:https://github.com/alibaba/Sentinel
官方介绍
资料下载随着微服务的流行,服务和服务之间的稳定性变得越来越重要。
Sentinel 以流量为切入点,从流量控制、熔断降级、系统负载保护等多个维度保护服务的稳定性。
CSDN下载:sentinel-dashboard-1.8.1.jar
Github下载:sentinel-dashboard-1.8.1.jar
# 启动即可,默认端口:9000 java -jar sentinel-dashboard-1.8.1.jar --server.port=9000
web访问地址:http://localhost:9000
默认账/密:sentinel/sentinel
# 创建sentinel目录 [hyuser@jsvm-hynode-011 /]$ sudo mkdir /data/sentinel && cd /data/sentinel # 下载sentinel的jar包;参考上文【资料下载】,如已下载可上传 [hyuser@jsvm-hynode-011 sentinel]$ sudo wget https://github.com/alibaba/Sentinel/releases/download/1.8.1/sentinel-dashboard-1.8.1.jar # 创建日志文件 [hyuser@jsvm-hynode-011 sentinel]$ sudo touch sentinel.log # 设置可读写权限 [hyuser@jsvm-hynode-011 sentinel]$ sudo chmod 666 sentinel.log # 启动sentinel服务 [hyuser@jsvm-hynode-011 sentinel]$ nohup java -jar sentinel-dashboard-1.8.1.jar --server.port=9000 --server.servlet.context-path=/sentinel > sentinel.log 2>&1 & # 查看启动日志 [hyuser@jsvm-hynode-011 sentinel]$ tail -f sentinel.log
web访问地址:http://localhost:9000
默认账/密:sentinel/sentinel
参考上述单机搭建方式搭建多台,配合Nginx负载均衡实现高可用



