ELMAH 与 IIS6.0 和 SQL Server 2005

发布于 2024-08-29 06:38:36 字数 619 浏览 8 评论 0原文

在生产中,我配置了 ELMAH,以便将错误记录到专门为 ELMAH 创建的 SQL Server 2005 数据库中。这些站点在 IIS6.0 Web 服务器上运行。

ELMAH 能够发送错误电子邮件,但没有任何内容记录到 SQL Server 数据库中。该连接是受信任的连接,我

<section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah"/> in section group
<errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="Elmah.Sql" applicationName="VBCPortal"/> under elmah

<add name="Elmah.Sql" connectionString="Data Source=(local);Initial Catalog=ELMAH;Trusted_Connection=True" /> in connectionStrings

的 web.config 文件中有该连接。

知道为什么错误没有记录到数据库中吗?

On production I have ELMAH configured so that the errors are logged into a SQL Server 2005 database created specially for ELMAH. The sites run on IIS6.0 web server.

ELMAH is able to send emails for the errors, but nothing is getting logged into the SQL Server database. The connection is a trusted connection and I have

<section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah"/> in section group
<errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="Elmah.Sql" applicationName="VBCPortal"/> under elmah

<add name="Elmah.Sql" connectionString="Data Source=(local);Initial Catalog=ELMAH;Trusted_Connection=True" /> in connectionStrings

in my web.config file.

Any idea why the errors are not getting logged into the database?

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

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

发布评论

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

评论(1

野鹿林 2024-09-05 06:38:36

最可能的原因是 aspnet 用户帐户没有数据库的权限。

Most likely cause is the aspnet user account does not have permission to the database.

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