Eureka Server微服务注册中心搭建
一、Eureka Server注册中心初步搭建
1. 在pom.xml文件中添加依赖
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka-server</artifactId> </dependency>
2. 编写启动类,并在启动类上添加@EnableEurekaServer注解
@SpringBootApplication @EnableEurekaServer public class EurekaServerApplication { public static void main( String[] args ) { SpringApplication.run(EurekaServerApplication.class, args); } }
3. 在resources目录下创建application.yml配置文件,并添加配置信息
server:
port: 8761
eureka:
client:
register-with-eureka: false
fetch-registry: false
service-url:
default-zone: http://localhost:8761/eureka
eureka.client.registerWithEureka:表示是否将自己注册到Eureka Server,默认为true. 当前应用即为Eureka Server,故设为false。
eureka.client.fetch-registry:表示是否从Eureka Server获取注册信息,默认为true. 因为这是一个单点的Eureka Server,不需要同步其他的Eureka Server节点的数据,故设为false。
eureka.client.serviceUrl.defaultZone:设置与Eureka Server交互的地址,查询服务和注册服务都需要依赖这个地址。多个地址可使用,(逗号)分割
二、创建服务提供者并进行注册
1. 创建maven工程spring-cloud-eureka-client,并在pom.xml文件中添加依赖
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka</artifactId> </dependency>
2. 编写启动类,并在启动类上添加@EnableEurekaClient或@EnableDiscoveryClient注解
@SpringBootApplication @EnableEurekaClient public class EurekaClientApplication { public static void main( String[] args ) { SpringApplication.run(EurekaClientApplication.class, args); } }
3. 在resources目录下创建application.yml配置文件,并添加配置信息
server:
port: 8080
spring:
application:
name: spring-cloud-eureka-client
eureka:
client:
service-url:
default-zone: http://localhost:8761/eureka
instance:
prefer-ip-address: true
spring.application.name:用于指定注册到Eureka Server上的应用名称。
eureka.instance.prefer-ip-address=true:表示将自己的IP注册到Eureka Server。如不配置该属性或将其设为false,则表示注册微服务所在操作系统的hostname到Eureka Server。
4. 访问http://localhost:8761/eureka
三、为Eureka Server添加用户认证
1. 在pom文件中添加依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency>
2. 在application.yml中添加配置
security:
basic:
enabled: true # 开启基于HTTP basic的认证
user:
name: tuozixuan # 配置登录的账户是user
password: 123456 # 配置登录的密码是password
注意:如果不设置用户的账户及密码,账户默认是user,密码是一个随机值,该值会在启动时打印出来。
3. 微服务注册到需要认证的Eureka Server
只需将eureka.client.service-url.default-zone配置为http://user:password@EUREKA_HOST:EUREKA_PORT/eureka/的形式
如:http://tuozixuan:123456@localhost:8761/eureka
上一篇: Kafka 0.9+Zookeeper3.4.6集群搭建、配置,新版Java Client的使用要点,高可用性测试,以及各种坑(二) kafka高可用java消息zookeeper
下一篇: Linux系统管理
推荐阅读
-
Spring cloud Eureka注册中心搭建的方法
-
Spring-Cloud Eureka注册中心实现高可用搭建
-
SpringCloud微服务实战:一、Eureka注册中心服务端
-
快速搭建Eureka注册中心
-
SpringCloud-服务注册与实现-Eureka创建服务注册中心(附源码下载)
-
转:SpringCloud服务注册中心比较:Consul vs Zookeeper vs Etcd vs Eureka
-
springcloud(二):spring cloud eureka 注册中心server 启动
-
我的Spring Cloud(二):Eureka Server注册中心
-
基于Spring Boot 2.0.2.RELEASE 的 Spring Cloud 速成指南 | 二. Spring Cloud 服务注册中心(Eureka Server)
-
SpringCloud - (八)Eureka高可用服务注册中心