安装、启动Alibaba SpringCloud 之Sentinel

一、下载SENTINEL-DASHBOARD.JAR包

进入官网:https://github.com/alibaba/Sentinel/releases

安装、启动Alibaba SpringCloud 之Sentinel_第1张图片
下载上图红色框框中的jar包

二、启动Sentinel

1. cmd启动

cmd进入下载sentinel-dashboard-1.8.3.jar的目录,输入一下代码即可启动:

java -Dserver.port=8180 -Dcsp.sentinel.dashboard.server=localhost:8180 -Dproject.name=sentinel-dashboard -jar sentinel-dashboard-1.8.0.jar

2. idea中启动

首先需要添加一个shell script
安装、启动Alibaba SpringCloud 之Sentinel_第2张图片
然后再框框中填入一下信息:
1)name:名字,可随便填
2)script path:java安装目录
3)script options:输入-Dserver.port=8180 -Dcsp.sentinel.dashboard.server=localhost:8180 -Dproject.name=sentinel-dashboard -jar F:\victory\software\sentinel-dashboard-1.8.3.jar(其中F:\victory\software是包含sentinel-dashboard-1.8.3.jar的路径名)
4)然后apply-》OK后就可以了
安装、启动Alibaba SpringCloud 之Sentinel_第3张图片
5)打开浏览器,输入访问地址http://localhost:8180,确认sentinel是否成功安装。
安装、启动Alibaba SpringCloud 之Sentinel_第4张图片
默认账号密码均是:sentinel
安装、启动Alibaba SpringCloud 之Sentinel_第5张图片

你可能感兴趣的:(java,Spring,Boot,sentinel,spring,cloud,java)