0条评论网友评论
- 全部评论
加载更多
2、Linux环境下安装sentinel
1、右键选择复制链接地址
2、在Linux下执行以下命令
wget https://github.com/alibaba/Sentinel/releases/download/1.8.1/sentinel-dashboard-1.8.1.jar
3、java -jar sentinel-dashboard-1.8.1.jar
然后访问http://ip:8080
用户和密码都是sentinel,和nacos类似
# application.yml文件中添加如下配置:
spring:
application:
name: ProviderDemo # 服务名称 应用名称
cloud:
nacos:
discovery:
server-addr: localhost:8848 # 配置注册中心的地址
sentinel:
transport:
dashboard: localhost:8686 # 配置sentinel dashboard地址
port: 8719
# 暴露的健康检查服务断点
management:
endpoint:
web:
exposure:
include: '*'