Sentinel-Dashboard安装

1. Docker官方镜像

找到跟你版本相对于的镜像进行拉取:

https://hub.docker.com/r/bladex/sentinel-dashboard

bash 复制代码
# 运行容器 Sentinel默认端口 8858
docker run --name sentinel-dashboard -p 8858:8858 -d bladex/sentinel-dashboard:1.8.6


用户名 sentinel 密码 sentinel

2.访问UI


结合Dashboard使用

1、引入依赖

XML 复制代码
 <dependency>
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  </dependency>
  

2 、添加配置,为微服务设置sentinel控制台地址

bash 复制代码
#服务启动直接控制台建立心跳连接
spring.cloud.sentinel.eager=true#此配置项定义了 Sentinel 控制台(Dashboard)的地址和端口
spring.cloud.sentinel.transport.dashboard=192.168.11.99:8858

3 、IDE配置启动参数(兼容)

++-Dcsp.sentinel.dashboard.server=192.168.11.99:8858++

4 访问接口查看控制台

4.1 验证效果

4.2 微服务和Sentinel Dashboard通信原理

相关推荐
ps酷教程18 小时前
sentinel微服务保护
微服务·架构·sentinel
Icoolkj1 天前
微服务学习-Sentinel 限流保护服务
学习·微服务·sentinel
RedCong1 天前
在k8s中部署一个可外部访问的Redis Sentinel
redis·kubernetes·sentinel
XingYuyu_Coder4 天前
企业级NoSQL数据库Redis
redis·sentinel·cluster·主从复制
codeBrute5 天前
Sentinel配置流控规则详解
sentinel
小马爱打代码6 天前
Redis Cluster和Sentinel模式,如何选择?
数据库·redis·sentinel
安的列斯凯奇16 天前
微服务保护—Sentinel快速入门+微服务整合 示例: 黑马商城
运维·微服务·sentinel
就玩一会_16 天前
谷粒商城-高级篇-Sentinel-分布式系统的流量防卫兵
sentinel
言之。16 天前
【微服务】5、服务保护 Sentinel
微服务·架构·sentinel
ITzhongzi16 天前
springboot接入sentinel案例
spring boot·后端·sentinel