我已經在服務器上安裝了AppFabric。我創建了一臺計算機的集羣。我還創建了一個名爲「Gagan」的緩存。 使用,以便AppFabric ErrorCode <ERRCA0017><ES0006>:
以下命令使用-CacheCluster - 運營商XML -ConnectionString \ NB-GJANJUA \緩存 啓動CacheCluster
結果是,緩存服務啓動並運行..所以到目前爲止,一切順利。
我然後設置類似下面
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="dataCacheClient"
type="Microsoft.ApplicationServer.Caching.DataCacheClientSection,
Microsoft.ApplicationServer.Caching.Core, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=31bf3856ad364e35"
allowLocation="true"
allowDefinition="Everywhere"/>
</configSections>
<!-- cache client -->
<dataCacheClient>
<!-- cache host(s) -->
<hosts>
<host
name="NB-GJANJUA.com"
cachePort="22233"/>
</hosts>
</dataCacheClient>
<system.web>
<compilation debug="true" targetFramework="4.0" >
<assemblies>
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="Microsoft.ApplicationServer.Caching.Client, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add assembly="Microsoft.ApplicationServer.Caching.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</assemblies>
</compilation>
<sessionState mode="Custom" customProvider="SessionStore" cookieless="true">
<providers>
<add name="SessionStore" type="Microsoft.ApplicationServer.Caching.DataCacheSessionStoreProvider" cacheName="Gagan" />
</providers>
</sessionState>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
但只要我啓動我的網站,它與此錯誤
分析器錯誤消息來了我的web.config文件中:錯誤碼:子狀態:有暫時失敗。請稍後重試。 (一個或多個指定的緩存服務器不可用,這可能是由繁忙的網絡或服務器引起的。請確保已授予此羣集上此客戶端帳戶的安全權限,並且允許AppFabric緩存服務通過所有緩存主機上的防火牆。稍後重試)
源錯誤:
Line 44: <sessionState mode="Custom" customProvider="SessionStore" cookieless="true">
Line 45: <providers>
Line 46: <add name="SessionStore" type="Microsoft.ApplicationServer.Caching.DataCacheSessionStoreProvider" cacheName="Gagan" />
Line 47: </providers>
Line 48: </sessionState>
有沒有辦法,我失去了一些東西?
注:我已經提到的 Microsoft.ApplicationServer.Caching.Client和 Microsoft.APplicationServer.Caching.Core組件
感謝您的時間和耐心
與問候 加甘·揚尤亞
我真的不知道爲什麼沒有被顯示在這裏 – Gagan 2010-10-08 15:54:33