docker部署Sentinel的dashboard

使用docker查看Sentinel的dashboard

[root@localhost ~]# docker search sentinel
NAME                                     DESCRIPTION                                      STARS     OFFICIAL
hashicorp/sentinel                                                                        4         
hashicorp/sentinel-website                                                                3         
bitnami/redis-sentinel                   Bitnami container image for Redis Sentinel       49        
sentinelofficial/sentinel-vpn-node                                                        7         
fredboat/sentinel                        https://github.com/FredBoat/sentinel             3         
seandooher/sentinel-iot                  Sentinel IoT docker image                        0         
sentinelofficial/sentinel-ikev2-node                                                      1         
arilot/sentinel                          Argo Sentinel.  An all-powerful toolset for0         
bladex/sentinel-dashboard                Alibaba Cloud Sentinel Dashboard (阿里巴巴流…   83        
thalesgroupsm/sentinel_ldk_rte           Docker image with Sentinel LDK Runtime versi…   1         
thalesgroupsm/sentinel_ldk_cloudportal   Docker image with Sentinel LDK Cloud Portal …   0         
dashpay/sentinel                         Dash Sentinel                                    0         
sentinelhub/eolearn                      Official eo-learn Docker images with Jupyter…   6         
filecoin/sentinel-visor                  This repository is deprecated. New tags will…   0         
gatblau/sentinel-snapshot                Development snapshots for Sentinel               0         
sentinelone/filebeat                                                                      0         
sentinelone/elasticsearch                                                                 0         
thrashr888/sentinel-simulator            An image for Hashicorp's Sentinel https://ww…   3         
sentinelofficial/stt1-dvpn-openvpn                                                        0         
iandavis/sentinel-airflow-spark                                                           0         
cooperaj/sentinel-broker                 Small, use once webservice to hookup a Redis…   1         
c0ff3e/sentinel-proxy                    to run a sentinel proxy                          0         
tsuyoshiushio/sentinel                                                                    0         
sentinelsec/sentinel-brakeman                                                             0         
sentinelwatch/aws-amplify                AWS Amplify                                      0     
[root@localhost ~]# docker pull bladex/sentinel-dashboard
Using default tag: latest
latest: Pulling from bladex/sentinel-dashboard
169185f82c45: Pull complete 
4346af5b5a4f: Pull complete 
5d128510094d: Pull complete 
31e21ef9107a: Pull complete 
Digest: sha256:9745fbc9787070f2b959b51be15ee793f05584c733bda46c5d7e8d662ff2881c
Status: Downloaded newer image for bladex/sentinel-dashboard:latest
docker.io/bladex/sentinel-dashboard:latest
[root@localhost ~]# ^C

容器启动方式

docker run --name sentinel  -d -p 8858:8858 -p 8719:8719 -d bladex/sentinel-dashboard:latest -e username=sentinel -e password=sentinel -e server=localhost:8858

启动服务访问接口(http://192.168.11.47:8858)

在这里插入图片描述

整合springCloud-alibaba

pom.xml

<!--sentinel 熔断降级-->
<dependency>
   <groupId>com.alibaba.cloud</groupId>
   <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>

application.yml 配置

spring:
    cloud:
        nacos:
            discovery:
                username: nacos
                password: nacos
                server-addr: 192.168.11.47:18848
        sentinel:
            transport:
                dashboard: 192.168.11.47:8858
                #注意:yml配置client-ip 是本地ip才行
                client-ip: 192.168.11.50
                port: 8719

相关推荐

  1. docker部署sentinel

    2024-04-14 05:44:03       29 阅读
  2. Docker部署Sentinel修改密码

    2024-04-14 05:44:03       26 阅读
  3. Docker】APISIX Dashboard 容器化部署

    2024-04-14 05:44:03       44 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-04-14 05:44:03       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-04-14 05:44:03       100 阅读
  3. 在Django里面运行非项目文件

    2024-04-14 05:44:03       82 阅读
  4. Python语言-面向对象

    2024-04-14 05:44:03       91 阅读

热门阅读

  1. Node.js 常用命令

    2024-04-14 05:44:03       38 阅读
  2. Vue Router 路由动态缓存组件

    2024-04-14 05:44:03       37 阅读
  3. I/O扩展芯片CAT9532介绍

    2024-04-14 05:44:03       39 阅读
  4. IDE是什么呀

    2024-04-14 05:44:03       27 阅读
  5. HTML5媒体元素

    2024-04-14 05:44:03       36 阅读
  6. Linux上安装Redis

    2024-04-14 05:44:03       44 阅读
  7. CSS设置元素的宽高比

    2024-04-14 05:44:03       40 阅读
  8. TCP/IPv4 开发过程中不要开启VPN

    2024-04-14 05:44:03       38 阅读
  9. 自动驾驶仿真测试的难点

    2024-04-14 05:44:03       38 阅读
  10. 【架构-11】SOA和微服务?

    2024-04-14 05:44:03       31 阅读
  11. C语言游戏实战(8):飞机大作战

    2024-04-14 05:44:03       34 阅读