本文介绍了Windows服务启动并立即停止的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨。


我知道我的Windows服务在我的dev

机器上以调试模式运行时工作。

它也适用于我的开发机器上的发布模式。但是,当我将

服务移动到

a生产服务器时,它会立即退出,启动/停止/无需

做错误。


可能出错了什么?


我的OnStart看起来像这样:


protected override void OnStart (string [] args)

{

InitIndexer();

}


和InitIndexer ()是构成

服务的代码的一小段代码。


任何想法?


谢谢。

Hi.

I know my windows service works when i run it in debug mode on my dev
machine.
It also works in release mode on my dev machine. But, when I move the
service to
a production server, it exits immediately with a start/stop/nothing to
do error.

What could be wrong?

My OnStart looks like this:

protected override void OnStart(string[] args)
{
InitIndexer();
}

and InitIndexer() is a lengthly bit of code making up the meat of the
service.

any ideas?

thanks.

推荐答案



服务调试可能有点麻烦,因为你不能只附加一个

调试器。因为在你发布应用程序之前你会想要事件记录

无论如何,请记住,现在就把它放进去,然后用它来调试

。然后你可以在你的代码中准确找出你想要的东西和

看看事情的发展方向。


你的日志方法很简单,例如:


private void LogEvent(string LogMessage,EventLogEntryType

LogEntryType)

{

if(!EventLog。 SourceExists(_eventSource))

{

EventLog.CreateEventSource(_eventSource,_logAppName);

}


EventLog MyLog = new EventLog();

MyLog.Source = _eventSource;

MyLog.WriteEntry(LogMessage,LogEntryType);

}

带调用者的


LogEvent(string.Format("服务中的错误:OnStart(){1}",ex.Message ),

EventLogEntryType.Error);


dave

services can be a bit of a pain to debug as you can''t just attach a
debugger. as you''ll want event logging before you release your app
anyway, mind as well just put it in now, and use it for debugging
also. you can then trace out exactly what you want in your code and
see where things go ary.

your log method is simple, something like:

private void LogEvent(string LogMessage, EventLogEntryType
LogEntryType)
{
if (!EventLog.SourceExists(_eventSource))
{
EventLog.CreateEventSource(_eventSource, _logAppName);
}

EventLog MyLog = new EventLog();
MyLog.Source = _eventSource;
MyLog.WriteEntry(LogMessage, LogEntryType);
}

with caller

LogEvent(string.Format("Error in Service:OnStart() {1}", ex.Message),
EventLogEntryType.Error);

dave




这篇关于Windows服务启动并立即停止的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 17:33