如何在idea中启动sentinel

官网下载地址:https://github.com/alibaba/Sentinel/releases
image

一、找到Edit Configurations(两种方式),并在里面的Shell Script中进行添加

image

二、配置方法有两个(Scrip file,Script text) 可能会因idea版本的不同配置选择方式不一致

(1)Scrip file
配置信息:

1
2
3
4
-Dserver.port=8180 
-Dcsp.sentinel.dashboard.server=localhost:8180
-Dproject.name=sentinel-dashboard -jar
D:\sorftware\sentinel\sentinel-dashboard-1.8.1.jar

提示:其中-jar后后面为自己的sentinelde 的jar包路径自行修改及版本号
image
(2)Script text
配置信息:

1
2
3
4
5
6
java 
'-Dserver.port=8180'
'-Dcsp.sentinel.dashboard.server=localhost:8180'
'-Dproject.name=sentinel-dashboard'
-jar
D:\sentinel\sentinel-dashboard-1.8.2.jar

提示:
(1)此方法需要在前三项上添加单引号
(2)提其中-jar后后面为自己的sentinelde 的jar包路径自行修改及版本号
image
其中:
'-Dserver.port=8180' ( 指定控制台端口)
'-Dcsp.sentinel.dashboard.server=localhost:8180' (指定访问控制台的地址)
'-Dproject.name=sentinel-dashboard' (项目的名称)
-jar
D:\sentinel\sentinel-dashboard-1.8.2.jar

三、启动并访问sentinel

image
image

附加:以命令行的方式启动sentinel

(1)在sentinel对应目录,打开命令行(cmd),启动运行sentinel
image

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

注意版本号

(2)进行访问测试
image