ELMAH 将其数据保存在哪里?

发布于 2025-01-07 02:15:13 字数 187 浏览 0 评论 0原文

我刚刚安装了 ELMAH.MVC(更多信息此处),并且想知道其数据保存在哪里。我读到您可以选择设置数据库进行存储,但似乎默认安装使用“内存中”?它是如何运作的?如果我回收应用程序池或 IIS 网站,我是否会丢失所有数据?谢谢!

I just installed ELMAH.MVC (more info here) and was wondering where its data is saved. I read that you can choose to set up database for storage but seems that the default install uses "in memory"? How does it work? If I recycle the app pool or IIS website do I loose all the data? Thanks!

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

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

发布评论

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

评论(2

無心 2025-01-14 02:15:13

是的,默认情况下它使用内存存储。当您的应用程序池重新启动时,您会丢失 elmah 数据。如果我没记错的话,旧版本的elmah使用App_Data文件夹来存储xml文件...如果你想使用数据库来存储日志,只需在你的elmah配置部分中指定连接字符串:

<elmah>
...
<errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="ElmahConnectionString"/> 

...
</elmah>

你应该在你的connectionStrings部分中有ElmahConnectionString,类似这个:

<connectionStrings>
    <add name="ElmahConnectionString "
         connectionString="Initial Catalog=my_database;data source=.\SQLEXPRESS;Integrated Security=SSPI;"
         providerName="System.Data.SqlClient" />
...
</connectionStrings>

在这里您可以查找示例 web.config 文件。

Yes, by default it uses memory storage. When your application pool is restarted, you loose elmah data. If I remember well, old versions of elmah used App_Data folder for storing xml files...If you want to use database to store logs, just specify connection string in your elmah config section:

<elmah>
...
<errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="ElmahConnectionString"/> 

...
</elmah>

You should have ElmahConnectionString in your connectionStrings section, something like this:

<connectionStrings>
    <add name="ElmahConnectionString "
         connectionString="Initial Catalog=my_database;data source=.\SQLEXPRESS;Integrated Security=SSPI;"
         providerName="System.Data.SqlClient" />
...
</connectionStrings>

Here you can find example web.config file.

趴在窗边数星星i 2025-01-14 02:15:13

阅读“检查 ErrorLog 类”主题,您将找到答案

使用 HTTP 模块和处理程序创建可插入 ASP.NET 组件

Read in "Examining the ErrorLog Class" topic, and you will find your answer

Using HTTP Modules and Handlers to Create Pluggable ASP.NET Components

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