Last active
January 28, 2020 17:22
-
-
Save OmarElgabry/e5fdf3c6ae1700a6eaab845ee939e117 to your computer and use it in GitHub Desktop.
Eureka Gallery Service Configurations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| spring.application.name=gallery-service | |
| server.port=8100 | |
| eureka.client.service-url.default-zone=http://localhost:8761/eureka |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I just tried to start services by your guide and I found that
eureka.client.service-url.default-zonedoes not work in all services.Figured out by searching that using
eureka.client.service-url.defaultZoneinstead works well. Maybe it will help others.Thanks a lot for your guide!