Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Deployment through Firewall
pawanjit
If deploying through a firewall, what should 'nodeRef useNode' value?
<replicationFarmSet>
<replicationFarm name="ABCD1234" >
<nodeRef useNode="WHAT???" >
</nodeRef>
</replicationFarm>
</replicationFarmSet>
Find more posts tagged with
Comments
Migrateduser
In the deployment config on the sending system you would specify the target host (not the firewall) as the "useNode" value and the firewall as the "localNode". On the target system, you would specify the firewall as an allowed host.
Example:
Sender - 10.20.30.40
Receiver - 10.100.200.201
Firewall - 200.109.201.101
Sender's odnodes.xml file contains...
<nodeSet>
<node host="10.100.200.201" />
</nodeSet>
Sender's deployment configuration file contains...
<localNode host="200.109.201.101" />
<replicationFarmSet>
<replicationFarm name="SomeFarm" >
<nodeRef useNode="10.100.200.201" />
</replicationFarm>
</replicationFarmSet>
Receiver's odbase.xml file (or odrcvr.xml if a receiver only) contains...
<localNode host="10.100.200.201" />
<allowedHosts>
<node host="200.109.201.101">
<allowedDirectories>
<path name="..."/>
...
</allowedDirectories>
</node>
</allowedHosts>
Todd Scallan
Senior Product Manager
Interwoven
t: 408-530-7167
e:
tscallan@interwoven.com
Migrateduser
Is there a way to know/limit which ports need to be opened on the firewall? It appears that RMI is managing this automatically but we want to have a specific set of ports defined for OD to choose from.
David M. Doggette
Certified Interwoven Consultant
Adam Stoller
The ports for the deployment itself are controlled via the server configuration file and the odnodes.xml file (RMI not being involved).
The latest version of OpenDeploy 5.5.1 - SP2 includes options for specifying the seven ports that will be used for the Java RMI communications for the OpenDeploy AdminServer. (check out the release notes for more information).
Is that what you were looking for?
--fish
(Interwoven, Curriculum Development)