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

相关推荐
T_Ghost10 小时前
SpringCloud微服务服务容错机制Sentinel熔断器
spring cloud·微服务·sentinel
你是人间五月天1 天前
sentinel实现控制台与nacos数据双向绑定
windows·sentinel
无名客01 天前
sentinel限流常见的几种算法以及优缺点
算法·sentinel·限流
tsxchen1 天前
centos9安装sentinel
sentinel
寒士obj1 天前
Sentinel服务治理:服务降级、熔断与线程隔离
sentinel
iiYcyk1 天前
Hystrix与Sentinel-熔断限流
hystrix·sentinel·springcloud
勇往直前plus2 天前
Sentinel微服务保护
java·spring boot·微服务·sentinel
boy快快长大4 天前
【Spring Cloud Alibaba】Sentinel(一)
sentinel
java干货4 天前
Sentinel和Cluster,到底该怎么选?
sentinel
27^×4 天前
Sentinel 与 Feign 整合详解:实现服务调用的流量防护
sentinel