Skip to main content

StoreFront 2.0 Propagate Changes Event ID 0 and 1 .There was no endpoint listening at net.tcp

When we add server to the Citrix storefront 2.0 server gropup , it may happen that the Propagate changes give us an error

You will see the following events on the Primary StoreFront 2.0 Server

Event Id 0:

Error in retrieving synchronization information.
Citrix.DeliveryServices.PowerShell.Command.Runner.Exceptions.PowerShellExecutionException: An error occured running the command: 'Get-DSClusterConfigurationUpdateState' ---> System.Management.Automation.ActionPreferenceStopException: Command execution stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: There was no endpoint listening at net.tcp://storefront02/Citrix/ConfigurationReplication that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.

Event Id 1:

Citrix.DeliveryServices.PowerShell.Command.Runner.Exceptions.PowerShellExecutionException, Citrix.DeliveryServices.PowerShell.Command.Runner, Version=2.3.0.0, Culture=neutral, PublicKeyToken=x5yhujsio8isdkl8
An error occured running the command: 'Get-DSClusterConfigurationUpdateState'


System.Management.Automation.ActionPreferenceStopException, System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=kljsdlkf535sio
Command execution stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: There was no endpoint listening at net.tcp://storefront02/Citrix/ConfigurationReplication that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.


The console shows the following message:



Solution:

Add the NT SERVICE\CitrixConfigurationReplication and NT SERVICE\CitrixClusterService to the local admins group on both servers

Also make sure :: Citrix Configuration Replication service running on both nodes


Hope this Helps.

Comments

  1. Thank you so much for posting your findings. The Citrix CTX articles drew up nothing of relevance to these event log entries. I encountered this with Storefront 2.5.2 running on Windows Server 2012 R1. Turns out a GPO was overwriting the local Administrators group on the Storefront servers.

    ReplyDelete
  2. Webroot Com Safe provides comprehensive protection for small and medium businesses and individual consumers around the world. Webroot provides comprehensive security for PC and Mac computers. This antivirus software detects and removes viruses and malware from your system and protects you from new threats online. Not only that, but it also blocks unwanted websites you try to unblock that could steal your personal data. Webroot antivirus is known for its utilities such as less disk storage, quick scans, automatic updates, and more.
    Webroot Secure Anywhere Antivirus ensures optimum security of your system, protecting the framework from the latest dangers. Webroot installs/uninstall and reinstall is simple and easy. Antivirus support is also available to troubleshoot problems you may encounter with this security software. If you already have antivirus software and are having trouble installing it, you can always call our Webroot customer service to speak with an expert.

    ReplyDelete

Post a Comment

Popular posts from this blog

Group Policy Object did not apply because it failed with error code '0x80070534 No mapping between account names and security IDs was done

One of our servers was losing the Local Admin settings as we control them using GPO (restricted Groups) We were receiving the following event on this particular server : Event ID 4098 Application Event Log The computer 'Administrators (built-in)' preference item in the 'Servers Local Admins {odjd9DBD-22AF-48EA-ADF5-F42ADE4182hst}' Group Policy Object did not apply because it failed with error code '0x80070534 No mapping between account names and security IDs was done.' This error was suppressed. To fix the issue we deleted all the folders from the following location and rebooted the server C:\ProgramData\Microsoft\Group Policy\History Hope this helps.

iDRAC 7 Shows no Signal in Virtual Console Preview

Recently i logged on to iDRAC for one of our Dell R720 servers,however somehow the console redirection did not work at all. I kept on seeing No Signal on the Virtual console Preview. I tried Rebooting the server but that did not help. Finally i clicked on Reset iDRAC and this did the trick. It may take around 2 -5 minutes before you can access iDRAC page again. I had to power on the server through iDRAC before anything showed up on console. Hope this Helps.

Close Open Files in Isilon

To close Open files in Isilon Sometimes we may have to Close open files on Isilon , This is how we can accomplish it First find all the Open Files using the Following Command: isi_for_array  "isi smb openfiles list" To Narrow the search  we can grep the result  as an example isi_for_array  "isi smb openfiles list" | grep -i abc Once you find the files the 6 digit number is the id for that open file. To close the open file run the following command isi_for_array isi smb openfiles close "123456" -f Hope this helps