Linux 部署Sentinel控制台

Sentinel 是面向分布式、多语言异构化服务架构的流量治理组件,主要以流量为切入点,从流量路由、流量控制、流量整形、熔断降级、系统自适应过载保护、热点流量防护等多个维度来帮助开发者保障微服务的稳定性。

1.版本选择

SpringCloudAlibaba SpringCloud SpringBoot 版本对照-CSDN博客

2.资源下载

资源地址: Release v1.8.1 · alibaba/Sentinel · GitHub

wget https://github.com/alibaba/Sentinel/releases/download/1.8.1/sentinel-dashboard-1.8.1.jar

3.启动

注意:sentinel-dashboard 默认端口8080。

复制代码
java -jar sentinel-dashboard-1.8.1.jar

sentinel-dashboard 默认端口8080,如果存在端口占用问题修改如下:

java -Dserver.port=6666 -Dcsp.sentinel.dashboard.server=localhost:6666 -Dproject.name=sentinel-dashboard -jar sentinel-dashboard-1.8.1.jar

默认账号/密码是 sentinel/sentinel

相关推荐
小旭95275 小时前
微服务服务容错保护:Sentinel 从入门到实战
微服务·架构·sentinel
uNke DEPH2 天前
SpringCloud Gateway 集成 Sentinel 详解 及实现动态监听Nacos规则配置实时更新流控规则
spring cloud·gateway·sentinel
代码改变生活-1208 天前
Sentinel 下载、启动及使用
sentinel
yzp-9 天前
Sentinel 执行流程
sentinel
停水咋洗澡10 天前
Redis Sentinel高可用实战:主从自动故障转移
java·redis·sentinel
鬼先生_sir11 天前
SpringCloud-Sentinel(熔断降级 & 流量控制)
spring·spring cloud·sentinel
会飞的大可18 天前
Redis Sentinel 高可用方案在WMS仓储管理系统的应用
redis·sentinel
zs宝来了19 天前
Redis 哨兵机制:Sentinel 原理与高可用实现
redis·sentinel·高可用·源码解析·哨兵
梵得儿SHI19 天前
SpringCloud 秒杀系统生产级落地:Sentinel+Redis 联合优化,从限流防刷到库存闭环,彻底解决超卖 / 宕机 / 恶意刷
redis·spring cloud·sentinel·分布式限流·百万级·瞬时高并发·产级秒杀系统解决方案
8Qi821 天前
Redis哨兵模式(Sentinel)深度解析
java·数据库·redis·分布式·缓存·sentinel