ELMAH 与 IIS6.0 和 SQL Server 2005
在生产中,我配置了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最可能的原因是 aspnet 用户帐户没有数据库的权限。
Most likely cause is the aspnet user account does not have permission to the database.