Version Differences for Connection Binding

(Initial paste from Plone: https://intranet.urbancode.com/support/procedure-for-changing-ip-on-a-binded-anthillpro-server)
Line 1:
    + Procedure for Changing IP on a Binded AnthillPro Server  
    + by Brad Galla — last modified Oct 27, 2011 12:34 PM  
       
    + This lists all the files that need modified, as well as changes to the database, if an anthillpro server is set to bind to an IP, and that IP changes on the host machine. (Please note that all was tested on 3.7.1_53990 server)  
    + Changing IPs of the anthillpro server  
    + If a server is bound by an IP address, and is not considering all IP addresses for communication, the following will need to be changed:  
       
    +  
       
    +  
       
    + %SERVER_HOME%\conf\server\  
    + installed.properties  
    + Find the line that says 'install.server.web.ip' and change it to '0.0.0.0'  
    + activemq.xml  
    + Find the line that starts '<transportConnector uri=...' and change ONLY the IP address portion to '0.0.0.0'. Leave ports and closing tag intact.  
    + %SERVER_HOME%\opt\tomcat\conf\  
    + server.xml  
    + Make sure that the 'address' section is set to "0.0.0.0"  
    + Finally, update the database  
    + Retrieve current info from the database  
    + SELECT DATA FROM SINGLETON WHERE ID=1 AND CLASS LIKE '%ServerSettings'  
    + Set new information in the database  
    + UPDATE SINGLETON SET DATA='...' WHERE ID=1 AND CLASS LIKE '%ServerSettings'  
    + Change ONLY the bind-ip and the connector-ip in the XML that is in the DATA CLOB.  
       
    +  
       
    + And that's all there is to changing the IP on the server.  
       
       
    + Please keep in mind that it is never a good idea to bind to anything other than 0.0.0.0; this way the server will accept any new IP address and steps like this can be avoided in the future.  
       
    + Document Actions  
       
    + Send this  
    + Print this