Linux系统Centos7搭建Sentinel

Linux系统Centos7搭建Sentinel

  • Linux系统Centos7搭建Sentinel
        • 1.Sentinel 概述
        • 2.Sentinel 功能模块
        • 3.Centos7搭建Sentinel
          • 3.1 下载Sentinel控制台安装包
          • 3.2 后台运行Sentinel控制台
          • 3.3 Sentinel 整合Dubbo实战
            • 3.3.1 引入Sentinel 核心库和客户端与dashboard控制台通信的依赖

Linux系统Centos7搭建Sentinel

1.Sentinel 概述

Sentinel 是阿里中间件团队开源的,面向分布式服务架构的轻量级流量控制产品,主要以流量为切入点,从流量控制、熔断降级、系统负载保护等多个维度来帮助用户保护服务的稳定性。

2.Sentinel 功能模块

Sentinel分为两个部分:客户端以及控制台

  1. 控制台用于管理限流,熔断规则的发布与监控
  2. 客户端则用于接收规则,并执行相关规则

3.Centos7搭建Sentinel

3.1 下载Sentinel控制台安装包
https://github.com/alibaba/Sentinel/releases/
sentinel-dashboard-1.6.0.jar
3.2 后台运行Sentinel控制台
[root@meteor-master ~]# cd /usr/local/sentinel\ /
[root@meteor-master sentinel ]# ll
total 20764
-rw------- 1 root root    31480 May 10 20:30 nohup.out
-rw-r--r-- 1 root root 21228480 Mar 20 01:21 sentinel-dashboard-1.5.0.jar
[root@meteor-master sentinel ]# nohup java -Dserver.port=8849 -Dcsp.sentinel.dashboard.server=localhost:8849  -jar sentinel-dashboard-1.5.0.jar &

后台部署配置注解:

-Dserver.port:指定 Sentinel 控制台端口
-Dcsp.sentinel.dashboard.server:指定 Sentinel 控制台IP+端口

输入IP:http://服务器IP:8849/#/dashboard/home,查看部署结果:

Linux系统Centos7搭建Sentinel_第1张图片

3.3 Sentinel 整合Dubbo实战
3.3.1 引入Sentinel 核心库和客户端与dashboard控制台通信的依赖

    com.alibaba.csp
    sentinel-core
    1.6.0



    com.alibaba.csp
    sentinel-apache-dubbo-adapter
    1.6.0



    com.alibaba.csp
    sentinel-transport-simple-http
    1.6.0


你可能感兴趣的:(框架源码,后端开发)