http://our.umbraco.org/forum/core/general/61055-Problems-with-scheduled-publishing-721
在我们的UAT和生产环境中部署在Azure上时,我在各种版本的Umbraco的计划发布行为中遇到了奇怪的错误。日志中的以下错误不断出现。
该网站托管在IIS 8中的https绑定中。
该站点的当前部署的Umbraco版本是7.1.9,其中发生了日志,并且计划的发布未完成。
尝试将原始7.2.1实例部署到同一环境后,会出现相同的错误,但是尽管出现错误,但发布似乎实际上按预期工作。
我已经回顾了一些关于此事的其他类似主题,并尝试了所描述的修复无济于事。我想知道我在这里找不到其他东西吗?
http://issues.umbraco.org/issue/U4-5842
http://issues.umbraco.org/issue/U4-5379
我考虑过Sebastiaan给出的解释的唯一想法是在我已经在日志中看到的OriginalRequestUrl修复程序实现之后:
2015-02-04 10:31:32,073 [17] INFO Umbraco.Web.UmbracoModule - [Thread 10] Setting OriginalRequestUrl: test.[company].com:443/umbraco
现在,在https上托管的网站不会绑定对http://test.[company].com:443/umbraco所做的任何请求,我猜这会导致超时?我是否缺少启用此功能的设置?
我已将umbracoUseSSL设置为true,但这没有帮助。
提前致谢。
2015-02-04 12:00:45,647 [20] ERROR Umbraco.Web.Scheduling.KeepAlive - [Thread 108] Error in ping
System.Net.WebException: The operation has timed out
at System.Net.WebClient.DownloadDataInternal(Uri address, WebRequest& request)
at System.Net.WebClient.DownloadString(Uri address)
at Umbraco.Web.Scheduling.KeepAlive.Start(ApplicationContext appContext, IUmbracoSettingsSection settings)
2015-02-04 12:01:17,644 [73] INFO umbraco.BusinessLogic.Log - [Thread 125] Log scrubbed. Removed all items older than 2014-12-06 12:01:17
2015-02-04 12:01:17,644 [20] INFO umbraco.BusinessLogic.Log - [Thread 108] Log scrubbed. Removed all items older than 2014-12-06 12:01:17
2015-02-04 12:01:25,624 [20] ERROR Umbraco.Web.Scheduling.ScheduledPublishing - [Thread 14] An error occurred with the scheduled publishing
System.Net.WebException: The operation has timed out
at System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
at System.Net.WebClient.UploadString(Uri address, String method, String data)
at Umbraco.Web.Scheduling.ScheduledPublishing.Run()
答案 0 :(得分:2)
据我了解,此问题与http://issues.umbraco.org/issue/U4-5965
有关出现问题的解决方案涉及新的baseUrl属性。我正在使用6.2.4并遇到同样的问题,IIS 8使用URL重写强制SSL。等待6.2.5被释放。
答案 1 :(得分:0)