gpt4 book ai didi

c# - 记录 Windows 服务

转载 作者:太空狗 更新时间:2023-10-30 00:53:37 26 4
gpt4 key购买 nike

我有以下代码用于记录我通过在线研究找到的 Windows 服务。它在我的服务类内部完成,就像下面这样被初始化之前。

public GBBInvService()
{
InitializeComponent();
if (!System.Diagnostics.EventLog.SourceExists("MyLogSource"))
System.Diagnostics.EventLog.CreateEventSource("MyLogSource",
"MyDoLog");
eventLog1.Source = "MyLogSource";
eventLog1.Log = "MyDoLog";
}

记录时的代码:

eventLog1.WriteEntry("GBBInvService Service Started");

然而,我们的顾问建议我不要这样做。他的评论如下:

我会避免让服务在运行时创建事件源。这需要服务以高权限运行(即比实际需要更多的计算机访问权限)。设置 Windows 事件日志源实际上是一项安装时工作。您可以将事件日志安装程序添加到项目安装程序文件(连同服务安装程序),然后事件源将始终存在

此建议的问题是我无法找到在项目安装程序文件中创建日志的任何示例。我还尝试将此日志创建部分移动到我的项目安装程序中,但它不允许我从我的 Web 服务 cs 页面调用或写入 eventlog1。他还建议使用 log4net,但这对我来说是新事物,而且很难掌握。我对刚刚完成我的第一个 Windows 服务项目的 Windows 服务仍然很陌生,非常感谢在项目安装程序中创建日志的任何方向,从我的服务 cs 页面写入它或在 log4net 上的任何提醒。

最佳答案

您的顾问是对的,在服务中这样做是个坏主意。

以下是如何在安装程序中创建事件源:

http://blogs.msdn.com/b/helloworld/archive/2008/12/11/creating-an-event-log.aspx?Redirected=true

简短版本:子类安装程序,并在子类安装程序的构造函数中创建事件日志源。

更新

来自链接:

After the service installer is executed, the log is 'registered', but not created yet. To create it, one event must be written. If the service runs using a restricted user account, that account may not have enough security permission to write the first log, as the log need to be created.

示例代码没有显示正在写入的一个事件。确保您正在这样做。

When installing the service, the user must run the installer as Administrator

确保您以管理员身份运行安装程序。

来自您的评论:

Service wouldn't start.

在事件日志中查找未启动的原因。也许它正在抛出异常,例如如果您没有在安装程序中编写一个事件,或者如果您没有以管理员身份运行安装程序。

关于c# - 记录 Windows 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15537047/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com