Skip to content
This repository was archived by the owner on Dec 19, 2025. It is now read-only.
pprasanna edited this page Jul 17, 2013 · 4 revisions

What should I do to deploy eureka in a different machine/port

  • Update "eureka.port" to your desired port number, in eureka-server/conf/eureka-client.properties
  • Update "eureka.serviceUrl.defaultZone" and "eureka.serviceUrl.default.defaultZone" to your desired machine name and/or port, in eureka-server/conf/eureka-client-test.properties
  • Build and deploy Eureka
  • Update "eureka.serviceUrl.default" to your desired machine name and/or port, in rss-middletier/src/main/resources/middletier.properties
  • Update "eureka.serviceUrl.default" to your desired machine name and/or port, in rss-edge/src/main/resources/edge.properties
  • Build and deploy middletier and edge

What should I do to run middletier in a different machine (say within tomcat)

  • Update build.gradle to the following for rss-middletier project
  • Add a new file "rss-middletier/WEB-INF/web.xml" with the following contents
  • Build middletier
  • Copy rss-middletier/build/libs/rss-middletier-*.war into Tomcat webapps directory
  • Run export CATALINA_OPTS="-Darchaius.deployment.applicationId=middletier -Darchaius.deployment.environment=dev"
  • Start tomcat

What should I do to run edge in a different machine

Same as the above as middletier

Clone this wiki locally