如何调试 Azure 500 内部服务器错误

发布于 2024-11-15 02:54:55 字数 1459 浏览 2 评论 0 原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

终止放荡 2024-11-22 02:54:55

对于 500 个错误,一种好方法是打开诊断并查看日志 - 应用程序事件日志和失败的请求日志可能会有所帮助。这是关于此的一篇文章 - http://oakleafblog .blogspot.com/2010/11/adding-trace-event-counter-and-error.html

正如 Igorek 所说,您还可以使用 RDP(远程桌面)来登录并检查应用程序 - 这是关于此的一篇很好的博客文章 - https://blogs.msdn.com/b/jimoneil/archive/2011/04/11/500-and-other-errors-in-azure-deployments.aspx


我的猜测是您可能缺少已部署包中的一个或多个程序集

For 500 errors, one good way is to turn diagnostics on and to look at the logs - both the application event logs and the failed request logs might help. Here's one post about this - http://oakleafblog.blogspot.com/2010/11/adding-trace-event-counter-and-error.html

As Igorek has said, you can also use RDP (remote desktop) to log in and to check the app - here's a good blog post about this - https://blogs.msdn.com/b/jimoneil/archive/2011/04/11/500-and-other-errors-in-azure-deployments.aspx


My guess is that you might be missing one or more Assemblies from the deployed package

伴我老 2024-11-22 02:54:55

您不必使用 RDP,只需关闭 Web.Config 中的自定义错误即可。但请确保将其添加到根 Web.Config 中,这样就可以解决问题。

这是我的一个例子:

<system.web>
    <customErrors mode="Off" />
    <compilation debug="true" targetFramework="4.5">
       ........
    </compilation>
</system.web>

请注意,典型项目中有多个 web.config。确保您将其添加到根 web.config 中(您的 Global.config 所在的位置)。 asax 是),而不是在 Views 文件夹中。

You don't have to use RDP, simply by turning off custom error in Web.Config will do. But make sure you are adding that in the root Web.Config, that will do the trick.

Here is an example of mine:

<system.web>
    <customErrors mode="Off" />
    <compilation debug="true" targetFramework="4.5">
       ........
    </compilation>
</system.web>

Just be aware that there are multiple web.configs in a typical project.. make sure you are adding this in the root web.config (where your Global.asax is) and NOT in Views folder.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文