【Spring Cloud Alibaba】sentinel环境搭建

【Spring Cloud Alibaba】sentinel环境搭建,第1张

一、环境准备

从github下载sentinel

这里下载可能非常的慢,可以右键复制链接地址,然后在迅雷里面去下载,非常的快。下载下来以后,上传到linux服务器直接启动。
启动方式一:java -jar sentinel-dashboard-1.8.4.jar需要保证8080端口没有被占用
启动方式二:java -jar -Dserver.port 8081 sentinel-dashboard-1.8.4.jar 自己指定一个端口
启动方式三:nohup java -jar -Dserver.port=9081 sentinel-dashboard-1.8.4.jar >> ./sentinel.log 2>&1 &后台启动,并且日志输出到当前目录的sentinel.log文件中
我采用第三种方式启动nohup java -jar -Dserver.port=9081 sentinel-dashboard-1.8.4.jar >> ./sentinel.log 2>&1 &

浏览器访问 http://192.168.101.41:9081

登录进去:sentinel/sentinel

这样sentinel控制台就算是部署成功了,接下来写程序连接到sentinel中

二、客户端程序搭建

依赖文件引入pom.xml

	<dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloudgroupId>
                <artifactId>spring-cloud-dependenciesartifactId>
                <version>Hoxton.SR12version>
                <type>pomtype>
                <scope>importscope>
            dependency>
            <dependency>
                <groupId>com.alibaba.cloudgroupId>
                <artifactId>spring-cloud-alibaba-dependenciesartifactId>
                <version>2.2.5.RELEASEversion>
                <type>pomtype>
                <scope>importscope>
            dependency>
        dependencies>
    dependencyManagement>
	<properties>
        <maven.compiler.source>8maven.compiler.source>
        <maven.compiler.target>8maven.compiler.target>
    properties>

    <dependencies>
        
        <dependency>
            <groupId>com.alibaba.cloudgroupId>
            <artifactId>spring-cloud-starter-alibaba-nacos-discoveryartifactId>
        dependency>
        
        <dependency>
            <groupId>com.alibaba.cloudgroupId>
            <artifactId>spring-cloud-starter-alibaba-nacos-configartifactId>
        dependency>
        
        <dependency>
            <groupId>com.alibaba.cloudgroupId>
            <artifactId>spring-cloud-starter-alibaba-sentinelartifactId>
        dependency>
        
        <dependency>
            <groupId>com.alibaba.cspgroupId>
            <artifactId>sentinel-datasource-nacosartifactId>
        dependency>

        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-webartifactId>
        dependency>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-actuatorartifactId>
        dependency>
    dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-maven-pluginartifactId>
            plugin>
        plugins>
    build>

我使用的nacos作为注册中心和配置中心参见【Spring Cloud Alibaba】nacos注册中心实践以及【Spring Cloud Alibaba】nacos配置中心实践也可以不用,直接将nacos相关的依赖删除即可。
下面是bootstrop.yml的配置

spring:
  application:
    name: nacos-cluster
  cloud:
    nacos:
      discovery:
        server-addr: 192.168.101.41:8858  #nacos作为注册中心地址
      config:
        server-addr: 192.168.101.41:8858 #nacos作为配置中心地址
        file-extension: yml # 指定yaml的格式的配置
    sentinel:
      transport:
        # 配置sentinel dashboard地址
        dashboard: 192.168.101.41:9081
        # 默认8719端口(与sentinel交换数据),假如被占用会自动从8719开始依次+1扫描,直至找到未被占用的端口
        port: 8719
        # 当前服务的部署主机地址
        client-ip: 192.168.101.39

下面是application.yml的配置

spring:
  profiles:
    active: dev
server:
  port: 8809

management:
  endpoints:
    jmx:
      exposure:
        include: '*'

启动程序

@SpringBootApplication
@EnableDiscoveryClient
public class ApplicationNacosConfig {
    public static void main(String[] args) {
        SpringApplication.run(ApplicationNacosConfig.class, args);
    }
}

普通的controller

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @author 隐市高手
 * @date 2022/5/14 15:04
 */
@RestController
public class LimitController {

    @GetMapping("/get/sentinel1")
    public String get1() {
        return "sentinel test 一";
    }

    @GetMapping("/get/sentinel2")
    public String get2() {
        return "sentinel test 二";
    }
}

最后结构如下图

三、验证sentinel监控结果

启动程序,分别访问/get/sentinel1/get/sentinel2两个接口(如果只是启动了程序,没有任何接口的访问,在sentinel中将没有这个服务的任何信息,这是一个懒加载模式,只有访问过了,在sentinel中才会有该服务的信息)

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/923900.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-16
下一篇 2022-05-16

发表评论

登录后才能评论

评论列表(0条)

保存