標籤:citrix xenapp
xenapp日誌錯誤提示:A timeout was reached (30000 milliseconds) while waiting for the Citrix XenApp Commands Remoting service to connect.
Citrix XenApp Commands Remoting service 無法啟動
原因:由於此服務啟動需串連互連網網站,如果伺服器沒有串連互連網則此服務提示逾時
解決方案:
1.將伺服器配置為允許串連互連網
2.啟動服務
3.服務啟動完成後,斷開互連網串連
其他方法(未驗證):
1.Looked at this again:
For anyone wanting a workaround and info here‘s the deal.
The service tries to do a CRL lookup as noted above by another user. If your machine doesn‘t have web access (in my case) edit your machine.config
C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config
Note On x64 machines, you must also change one of the following:
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\CONFIG\machine.config
Look for the <runtime/> or <runtime> (depending on if you‘ve changed it or not) and make it look like this:
<runtime>
<generatePublisherEvidence enabled="false"/>
</runtime>
It‘s also important to make sure the account that the commands remoting service is running has has file permissions to machine.config in the framework64/2.0*** folder. (this got me...there‘s a certain version of the iSeries client that messes up permissoins on this file)
2.Create a file name as Citrix.XenApp.Commands.Remoting.Service.exe.config with following:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<generatePublisherEvidence enabled="false" />
</runtime>
</configuration>
save it to the following location
C:\Program Files\Citrix\XenApp Commands
and start the service this will start.
本文出自 “hongbifu” 部落格,請務必保留此出處http://flambee.blog.51cto.com/112166/1576492
xenapp日誌錯誤提示Citrix XenApp Commands Remoting service 無法啟動