Windows Server 2003 上的 Log4Net

发布于 2024-10-30 09:02:03 字数 1656 浏览 0 评论 0原文

我一直在 Windows 7 操作系统上使用 Visual Studio 2010 开发 Web 应用程序。

我使用 Log4Net 来登录事件查看器,效果非常好,这意味着所有内容都正确记录在我的 Windows 7 事件查看器上。

在 Windows Server 2003 计算机上安装相同的项目后,我注意到没有记录任何内容...

我已经在 Windows Server 2003 计算机的管理员组中添加了 ASPNET,但问题仍然存在...

在 AssemblyInfo 上。我添加了.cs 文件:

[程序集:log4net.Config.XmlConfigurator()]

在 Web.config 文件上我添加了:

... ...
-->

<appender name="EventLogAppender" type="log4net.Appender.EventLogAppender" >
  <param name="LogName" value="MyLog" />
  <param name="ApplicationName" value="MyApplication" />
  <layout type="log4net.Layout.PatternLayout">
    <conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
  </layout>
</appender>

<!-- Setup the root category, add the appenders and set the default level -->
<root>
  <level value="INFO" />
  <appender-ref ref="ConsoleAppender" />
</root>
<!-- ApplicationKit category - the presentation UI -->
<logger name="MyLogger">
  <level value="INFO" />
  <appender-ref ref="FileAppender" />
  <appender-ref ref="EventLogAppender" />
</logger>

最后是背后的代码:

... log4net.Config.XmlConfigurator.Configure(); Ilog log = LogManager.GetLogger("MyLogger"); ...

我已经在以下位置创建了 MyLog 键值:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog

但仍然没有记录任何内容。

我 100% 确信这在 Windows 7 上完美运行。

我需要在 Windows Server 2003 上进行一些其他特殊配置吗?

提前致谢

I've been working on a web application using Visual Studio 2010 on a Windows 7 OS.

I used Log4Net for logging on the Event Viewer and that worked out great, meaning that everything is being correctly logged on my Windows 7 Event Viewer.

After installing this same project on a Windows Server 2003 Machine, I've noticed that nothing get's logged...

I already added the ASPNET on the Administrators group of the Windows Server 2003 machine but still the problem persists...

On the AssemblyInfo.cs file I added:

[assembly: log4net.Config.XmlConfigurator()]

On Web.config file I added:

...

...

-->

<appender name="EventLogAppender" type="log4net.Appender.EventLogAppender" >
  <param name="LogName" value="MyLog" />
  <param name="ApplicationName" value="MyApplication" />
  <layout type="log4net.Layout.PatternLayout">
    <conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
  </layout>
</appender>

<!-- Setup the root category, add the appenders and set the default level -->
<root>
  <level value="INFO" />
  <appender-ref ref="ConsoleAppender" />
</root>
<!-- ApplicationKit category - the presentation UI -->
<logger name="MyLogger">
  <level value="INFO" />
  <appender-ref ref="FileAppender" />
  <appender-ref ref="EventLogAppender" />
</logger>

And finally on the code behind:

...
log4net.Config.XmlConfigurator.Configure();
Ilog log = LogManager.GetLogger("MyLogger");
...

I already created the MyLog key value on:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog

But still, nothing gets logged there.

I'm 100% percent sure this works perfectly on Windows 7.

Do I need to make some oyher special configuration on Windows Server 2003?

Thanks in advance

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

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

发布评论

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

评论(1

逆光下的微笑 2024-11-06 09:02:03

好吧...

事实证明,我还必须向网络服务授予以下密钥的完全权限:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog

Well...

As it turned out I also had to give the NETWORK SERVICE full permissions to the following key:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog

Voila

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