十、Linux(CentOS7) 安装 Sentinel

1、下载Sentinel发布版本,地址https://github.com/alibaba/Sentinel/releases
2、将下载的jar包sentinel-dashboard-1.8.0.jar上传到Linux服务器,Sentinel 是一个标准的 Spring Boot 应用,以 Spring Boot 的方式运行 jar 包即可,执行启动命令

nohup java -Dserver.port=8086 -Dproject.name=sentinel-dashboard -jar sentinel-dashboard-1.8.0.jar >/dev/null &

3、在浏览器输入测试的http://ip:8086 即可访问登录界面,默认用户名密码为sentinel/sentinel

十、Linux(CentOS7) 安装 Sentinel_第1张图片
image.png

4、至此,一个简单的Sentinel就部署成功了,其他更详细功能及使用方式请参考: https://github.com/alibaba/Sentinel/wiki/%E4%BB%8B%E7%BB%8D

你可能感兴趣的:(十、Linux(CentOS7) 安装 Sentinel)