3

我制作了一个简单的 Windows 服务,但是当我尝试启动它时,它会立即关闭并显示以下消息:

本地计算机上的 ConsumerService 服务启动然后停止。如果某些服务没有被其他服务或程序使用,它们会自动停止。

以下是我尝试运行的服务:

static class Program
{
    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    static void Main()
    {
        var servicesToRun = new ServiceBase[] 
                                          { 
                                              new ConsumerService() 
                                          };
        ServiceBase.Run(servicesToRun);
    }
}

public partial class ConsumerService : ServiceBase
{
    private readonly MessageConsumer<ClickMessage> _messageconsumer;
    private readonly SqlRepository _sqlrep;
    private static Timer _timer;
    public ConsumerService()
    {
        InitializeComponent();

    }

    protected override void OnStart(string[] args)
    {
        try
        {
            File.Create(@"c:\ErrorLog.txt");
            WriteToFile("Has started : " + DateTime.UtcNow);
            var t = new Timer(OnTimeEvent, null, 1000, 1000);
        }
        catch (Exception e)
        {
            WriteToFile("Error : " + e.Message);
        }
    }

    private void OnTimeEvent(object state)
    {
        WriteToFile("The time is : " + DateTime.UtcNow);
    }

    protected override void OnStop()
    {
        WriteToFile("Has stopped : " + DateTime.UtcNow);
    }

    private static void WriteToFile(string s)
    {
        var stream = File.AppendText(@"c:\ErrorLog.txt");
        stream.WriteLine(s);
    }
}

如您所见,它只是一个简单的计时器,每 1 秒向文件写入一行,所以我很困惑为什么这会阻止服务运行。我也很难看出 windows 给出的消息与该服务有什么关系,因为这会阻止任何服务运行,除非某些东西已经依赖于它。

4

3 回答 3

2

这很可能是由于主线程中未处理的错误。要验证这一点,请检查事件日志,但从快速查看您的代码来看,该函数WriteToFile有可能崩溃并导致整个服务停止运行。

实际上它应该会崩溃,因为您让流处于打开状态(因此文件被锁定)并且第二次尝试打开它会导致错误。

将代码更改为此,它应该可以防止此类崩溃,并修复您的文件锁定错误:

private static void WriteToFile(string s)
{
    try
    {
        using (var stream = File.AppendText(@"c:\ErrorLog.txt"))
        {
            stream.WriteLine(s);
            stream.Close();
        }
    }
    catch (Exception e)
    {
        Console.WriteLine("error writing to file: " + e);
        //...or any other means of external debug...
    }
}
于 2012-11-19T14:21:06.330 回答
1

正如我所看到的那样,您的代码正在结束......因此,程序的执行自然而然地结束了。这就是您的服务也停止的原因,因为它的执行结束了。

于 2012-11-19T14:23:07.280 回答
0

来自msdn

只要您使用 Timer,就必须保留对它的引用。与任何托管对象一样,当没有对 Timer 的引用时,它会受到垃圾回收的影响。Timer 仍然处于活动状态的事实并不能阻止它被收集。

您不保留对Timer对象的任何引用。

尝试改变这个:

private static Timer _timer;

对此:

private Timer _timer;

还有这个:

var t = new Timer(OnTimeEvent, null, 1000, 1000);

对此:

_timer = new Timer(OnTimeEvent, null, 1000, 1000);
于 2012-11-19T14:19:53.403 回答