sentinel安装教程
Sentinel
alibaba/Sentinel: Sentinel 是阿里巴巴开源的一款面向分布式服务架构的流量控制、熔断降级组件,提供实时监控、限流、降级和系统保护功能,适用于微服务治理场景。
项目地址:https://gitcode.com/gh_mirrors/sentine/Sentinel
·
一.windows系统
1.下载jar包,并新建启动脚本:startup.bat
@echo off
java -Dserver.port=8849 -jar .\sentinel-dashboard-1.8.0.jar
二.centos系统
1.下载jar包放置某目录
2.新建启动脚本:startup.sh,其中设置了端口为8849,指定了后台运行
#!/bin/bash
nohup java -Dserver.port=8849 -Dproject.name=sentinel-dashboard -Dcsp.sentinel.api.port=8719 -jar /opt/server/sentinel1.8/sentinel-dashboard-1.8.0.jar &
3.给新建的脚本赋权限:chmod 777 /opt/server/sentinel1.8/startup.sh
4.运行脚本,地址为http://服务器ip:8849,(其中端口是脚本指定的,可更改)
默认账户和密码都是sentinel
alibaba/Sentinel: Sentinel 是阿里巴巴开源的一款面向分布式服务架构的流量控制、熔断降级组件,提供实时监控、限流、降级和系统保护功能,适用于微服务治理场景。
最近提交(Master分支:2 个月前 )
a08dc695
* Fix the bugs mentioned in issue #3562 and #3563.
Fix the issue in the spring-webmvc-v6x-adapter where, after configuring http-method-specify:true, the prefixes for different request methods were not concatenated.
Fix incorrect time unit in the tooltip when adding a new circuit breaker rule with statistical window duration.
* Fix the bugs mentioned in issue #3562 and #3563.
Fix the issue in the spring-webmvc-v6x-adapter where, after configuring http-method-specify:true, the prefixes for different request methods were not concatenated.
Fix incorrect time unit in the tooltip when adding a new circuit breaker rule with statistical window duration.
* Fixed the issue where the original test class was affected by the concatenation of resource names after adding the logic for the HTTP prefix concatenation.
* remove mseHttpMethodSpecify field and update the unit test as suggested.
* retrigger CI 6 天前
e60f0d0e
* Simple rules should have higher priority than regular expression rules
* Add optional switch to skip regex matching when simple rules already match, default: false, keeps backward compatibility.
* fix RuleManagerTest unit test failure 6 天前
新一代开源开发者平台 GitCode,通过集成代码托管服务、代码仓库以及可信赖的开源组件库,让开发者可以在云端进行代码托管和开发。旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。
更多推荐









所有评论(0)