-
Notifications
You must be signed in to change notification settings - Fork 165
Open
Description
Is There any way to deploy assets from one deployer machine to multi instances enviroment on diferent machines?
I found some workaround. But this is a messy solution :( because each new IS need to be added from scratch.
- Add to System.properties definition of new IS
devIS2Host=xxx.xxx.xxx.xxx`
devIS2Port=5555`
devIS2Username=Administrator
devIS2Password=xxxx
Add to setUpInitial.xslt
<xsl:param name="devIS2Host"/>
<xsl:param name="devIS2Port"/>
<xsl:param name="devIS2Username"/>
<xsl:param name="devIS2Password"/>
<Enviroment>
<IS>
<isalias name="dev2Server">
<host><xsl:value-of select="$devIS2Host"/></host>
<port><xsl:value-of select="$devIS2Port"/></port>
<user><xsl:value-of select="$devIS2Username"/></user>
<pwd><xsl:value-of select="$devIS2Password"/></pwd>
<useSSL>false</useSSL>
<installDeployerResource>true</installDeployerResource>
<Test>true</Test>
</isalias>
</IS>
</Enviroment>
Best regards
Pawel
Metadata
Metadata
Assignees
Labels
No labels