大家好,又见面了,我是你们的朋友全栈君。
eureka本地集群配置eureka集群
server:
port: 4000
spring:
application:
name: eurkea-server
eureka:
server:
enable-self-preservation: false # 关闭自我保护(缺省为打开)
eviction-interval-timer-in-ms: 5000 # 扫描失效服务的间隔时间(缺省为60*1000ms)
client:
fetch-registry: true # 从注册中心获取服务注册信息(缺省为true)
register-with-eureka: true # 是否将自己注册到注册中心(缺省为true)
#service-url:
#defaultZone: http://d2:88/eureka/,http://d3:88/eureka/
instance:
#hostname: d1
prefer-ip-address: false
注意:要配置nginx
server {
listen 88;
server_name d1;
location / {
proxy_pass http://localhost:9501;
root html;
index index_test1.html index_test1.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
server {
listen 88;
server_name d2;
location / {
proxy_pass http://localhost:9502;
root html;
index index_test1.html index_test1.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
server {
listen 88;
server_name d3;
location / {
proxy_pass http://localhost:9503;
root html;
index index_test1.html index_test1.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
要修改hosts文件
C:\Windows\System32\drivers\etc\hosts文件
启动成功之后可以看到
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/142039.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...