Releases · alibaba/Sentinel · GitHubSentinel下载官方
在cmd 里面运行 启动命令
java -jar sentinel-dashboard-1.8.6.jar
启动成功前提 java环境 ,已经注册到服务注册中心,8080端口没有被占用
启动后访问地址为
qhttp://localhost:8080http://localhost:8080登录密码均为sentinel
maven依赖
<dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-starter-alibaba-sentinel</artifactId></dependency><!--nacos-discovery--><dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId></dependency>
yaml配置
server:port: 8401spring:application:name: cloudalibaba-sentinel-servicecloud:nacos:discovery:server-addr: localhost:8848 #Nacos服务注册中心地址sentinel:transport:dashboard: localhost:8080 #配置Sentinel dashboard控制台服务地址port: 8719 #默认8719端口,假如被占用会自动从8719开始依次+1扫描,直至找到未被占用的端口
Sentinel采用的是懒加载机制,需要访问几次接口才能在界面中看到服务