2016-03-23 8 views
2

私のラップトップのローカルのumbracoプロジェクトは完全に実行されますが、実動サーバーに置くとバックエンドは非常に遅くなります。 VPSのUmbraco 7は本番サーバーの速度が遅く、再起動し続けます

仕様:

  • のWindows Server 2012
  • 1つのCPU 2つのコアで2.2GHzの
  • 4GBのRAM
  • IIS8
  • MSSQLエクスプレス

U私は新しいノードまたはバックエンドでのその他の変更を加える際mbracoバージョン

7.4.1

はまた、それは時々ハングアップして、私は、アプリケーションが再起動したことをログに表示されます。

ログは以下を参照:

ログ規則これについての提案を持っている

2016-03-23 09:59:36,936 [P2616/D99/T30] INFO Umbraco.Core.UmbracoApplicationBase - Application shutdown. Details: ConfigurationChange 

_shutDownMessage=IIS configuration change 
HostingEnvironment initiated shutdown 
HostingEnvironment caused shutdown 

_shutDownStack= at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo) 
    at System.Environment.get_StackTrace() 
    at System.Web.Hosting.HostingEnvironment.InitiateShutdownInternal() 
    at System.Web.Hosting.PipelineRuntime.StopProcessing() 
    at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) 
    at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) 
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 
2016-03-23 09:59:49,483 [P2616/D100/T36] INFO Umbraco.Core.UmbracoApplicationBase - Application shutdown. Details: ConfigurationChange 

_shutDownMessage=IIS configuration change 
HostingEnvironment initiated shutdown 
HostingEnvironment caused shutdown 

_shutDownStack= at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo) 
    at System.Environment.get_StackTrace() 
    at System.Web.Hosting.HostingEnvironment.InitiateShutdownInternal() 
    at System.Web.Hosting.PipelineRuntime.StopProcessing() 

誰ですか?

+2

おそらく、このパッチをインストールする必要があります:http://issues.umbraco.org/issue/U4-6338 また、umbracoのバージョンを指定してください。既に修正済みのバグかもしれません。 – sebastiaan

+0

@sebastiaan私はこれをテストします。バージョンは7.4.1です。 – Mivaweb

+0

これは、インデックスが壊れている場合にも発生することがあります。あなたが削除する必要がある 'App_Data'フォルダだと思います(umbracoはそれを再構築します)が、最初にバックアップしてください! – glcheetham

答えて

1

hereこの問題のWindows Server 2012 R2修正プログラムは、一度インストールしても問題が発生しなくなりました。

+0

これは私のためにそれを並べ替えました。 –

0

最近同じ問題が発生し、構成変更を余儀なくされたため、インデックス作成を検討しました。

それは何かが保存されるたびに再起動するアプリケーションプールを停止する必要がありますが、私にはない

<providers> 
    <!-- 
    <add name="InternalIndexer" type="UmbracoExamine.UmbracoContentIndexer, UmbracoExamine" 
     supportUnpublished="true" 
     supportProtected="true" 
     analyzer="Lucene.Net.Analysis.WhitespaceAnalyzer, Lucene.Net"/> 

    <add name="InternalMemberIndexer" type="UmbracoExamine.UmbracoMemberIndexer, UmbracoExamine" 
     supportUnpublished="true" 
     supportProtected="true" 
     analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net"/> 

    <add name="ExternalIndexer" type="UmbracoExamine.UmbracoContentIndexer, UmbracoExamine"/> 
    --> 
</providers> 

プロバイダ

、これを試してみてください/config/ExamineSettings.config

に移動し、コメントアウトインデクサーがリフレッシュを強制する理由を理解してください

関連する問題