I follow all steps from tutorial and make a umbraco instalation in load balance. But, when i update certains contents like media, the cache dont update in all servers.
My umbracoSettings.config is:
<!-- distributed calls make umbraco use webservices to handle cache refreshing -->
<distributedCall enable="true">
<!-- the id of the user who's making the calls -->
<!-- needed for security, umbraco will automatically look up correct login and passwords -->
<user>0</user>
<servers>
<!-- add ip number or hostname, make sure that it can be reached from all servers -->
<!-- you can also add optional attributes to force a protocol or port number (see #2) -->
I have this exact same issue. I thought maybe setting interval="10" or runAsync="true" in the provider settings InternalMemberIndexer in ExamineSettings.config may help. I've not been able to test this yet. Did you get this fixed?
In a load bananced Umbraco environment, when content is deployed to the Master server, the distributed call only sends a signal to the slave server telling it to reload content. it doesn't deploy any files. media and Umbraco forms are all server level objects and will not be deployed to the Slave server. to fix this you need to install a 3rd party tool to copy all media files (in ~/Media/) and Umbraco Forms files (in App_Plugins/UmbracoForms/Data/) from server 7 to server 8.
I fixed this with a tool called SyncBackPro. I set all file in the directories mentioned above in server 8 to mirror those in server 7.
Load balance environment dont updade cache.
I follow all steps from tutorial and make a umbraco instalation in load balance. But, when i update certains contents like media, the cache dont update in all servers.
My umbracoSettings.config is:
<!-- distributed calls make umbraco use webservices to handle cache refreshing -->
<distributedCall enable="true">
<!-- the id of the user who's making the calls -->
<!-- needed for security, umbraco will automatically look up correct login and passwords -->
<user>0</user>
<servers>
<!-- add ip number or hostname, make sure that it can be reached from all servers -->
<!-- you can also add optional attributes to force a protocol or port number (see #2) -->
<server>j301.geraldoabreu.com</server>
<server>j302.geraldoabreu.com</server>
<!-- <server>127.0.0.1</server>-->
<!-- <server forceProtocol="http|https" forcePortnumber="80|443">127.0.0.1</server>-->
</servers>
</distributedCall>
Someone help me!
Sorry for my bad english.
I have this exact same issue. I thought maybe setting interval="10" or runAsync="true" in the provider settings InternalMemberIndexer in ExamineSettings.config may help. I've not been able to test this yet. Did you get this fixed?
In a load bananced Umbraco environment, when content is deployed to the Master server, the distributed call only sends a signal to the slave server telling it to reload content. it doesn't deploy any files. media and Umbraco forms are all server level objects and will not be deployed to the Slave server. to fix this you need to install a 3rd party tool to copy all media files (in ~/Media/) and Umbraco Forms files (in App_Plugins/UmbracoForms/Data/) from server 7 to server 8.
I fixed this with a tool called SyncBackPro. I set all file in the directories mentioned above in server 8 to mirror those in server 7.
is working on a reply...