SpringCloud注册服务器基本配置
### for server ########################################################
#配置安全验证,用户名及密码
spring.application.name=test-cloud-server-01
server.port=8761
server.address=0.0.0.0
server.context-path=/
eureka.instance.prefer-ip-address=true
eureka.client.serviceUrl.defaultZone=http://test:test@10.3.3.130:${server.port}/eureka/
eureka.instance.instance-id=${spring.cloud.client.ipAddress}:${server.port}
eureka.instance.hostname=${spring.cloud.client.ipAddress}
eureka.client.registerWithEureka=false
eureka.client.fetchRegistry=false
# 设为false,关闭自我保护
eureka.server.enable-self-preservation=true
# eureka server清理无效节点的时间间隔,默认60000毫秒,即60秒
eureka.server.eviction-interval-timer-in-ms=5000
# 表示eureka server至上一次收到client的心跳之后,等待下一次心跳的超时时间,
# 在这个时间内若没收到下一次心跳,则将移除该instance。(默认90秒)
eureka.instance.lease-expiration-duration-in-seconds=10
security.basic.enabled=true
security.user.name=test
security.user.password=test
#启用shutdown
endpoints.shutdown.enabled=true
#禁用密码验证
endpoints.shutdown.sensitive=false
#指定shutdown endpoint的路径
endpoints.shutdown.path=/admin/shutdown
#关闭安全认证校验,避免在访问/loggers端点的时候报错
management.security.enabled=false
#指定管理端口和IP
management.port=15150
management.address=127.0.0.1
### end for server ########################################################