我正在使用 Quartz.net,并且试图让 Quartz 服务器在 Windows 服务中启动。我创建了一个 Windows 服务项目并包含 Quartz.net 库。在我的服务课程中,我有:
protected override void OnStart(string[] args)
{
try
{
Host host = HostFactory.New(x =>
{
x.Service<IQuartzServer>(s =>
{
s.SetServiceName("quartz.server");
s.ConstructUsing(builder =>
{
QuartzServer server = new QuartzServer();
server.Initialize();
return server;
});
s.WhenStarted(server => server.Start());
s.WhenPaused(server => server.Pause());
s.WhenContinued(server => server.Resume());
s.WhenStopped(server => server.Stop());
});
x.RunAsLocalService();
//x.RunAs(@"mydomain\mysusername", "mypassword");
x.SetDescription(Configuration.ServiceDescription);
x.SetDisplayName(Configuration.ServiceDisplayName);
x.SetServiceName(Configuration.ServiceName);
});
host.Run();
}
catch (Exception ex)
{
Log.Error(ex.Message);
Log.Error(ex.InnerException.Message);
}
}
我还创建了一个 Windows 服务安装程序,并使用以下命令在 Visual Studio 的命令提示符下成功安装了 Windows 服务:
installutil MyWindowsService.exe
当我在 Windows 服务列表中查看我的服务并尝试启动该服务时 - 我收到一个消息对话框:
The MyWindowsService service on Local Computer started and the
stopped. Some Services stop automatically if they are not in use by
other services or programs.
这是我记录到事件查看器(log4net)的输出:
窗口事件
1
Information 05/12/2012 14:52 MyWindowsService.exe "2012-12-05
14:52:24,044 [11528] INFO
Common.Logging.Factory.AbstractLogger.Info(:0) - Finished Starting
MyProject Windows Service."
2
Error 05/12/2012 14:52 Service1 "Service cannot be started.
System.NullReferenceException: Object reference not set to an instance
of an object. at MyWindowsService.MyProject.OnStart(String[] args)
in c:\My Projects\MyProject
v40\CO40\MyWindowsService\MyProject.cs:line 58 at
System.ServiceProcess.ServiceBase.ServiceQueuedMainCallback(Object
state)"
3
Error 05/12/2012 14:52 MyWindowsService.exe "2012-12-05 14:52:24,042
[6048] ERROR Common.Logging.Factory.AbstractLogger.Error(:0) - The
Topshelf.HostConfigurators.WindowsServiceDescription service has not
been installed yet. Please run 'MyWindowsService, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=null install'. "
4
Error 05/12/2012 14:52 MyWindowsService.exe "2012-12-05 14:52:24,041
[6048] FATAL Topshelf.Windows.WindowsServiceHost.Run(:0) - The
Topshelf.HostConfigurators.WindowsServiceDescription service has not
been installed yet. Please run 'MyWindowsService, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=null install'. "
5
Information 05/12/2012 14:52 MyWindowsService.exe "2012-12-05
14:52:24,039 [6048] INFO Topshelf.Windows.WindowsServiceHost.Run(:0)
- Starting up as a winservice application "
6
Information 05/12/2012 14:52 MyWindowsService.exe "2012-12-05
14:52:24,038 [6048] DEBUG Topshelf.Builders.RunBuilder.CreateHost(:0)
- Running as a Windows service, using the service host "
7
Information 05/12/2012 14:52 MyWindowsService.exe "2012-12-05
14:52:24,027 [6048] INFO Topshelf.OS.OsDetector.DetectOs(:0) -
Detected the operating system: 'win' "
8
Information 05/12/2012 14:52 MyWindowsService.exe "2012-12-05
14:52:23,895 [6048] INFO
Topshelf.HostConfigurators.HostConfiguratorImpl.CreateHost(:0) -
Topshelf v2.2.2.0, .NET Framework v4.0.30319.17929 "
9
Information 05/12/2012 14:52 MyWindowsService.exe "2012-12-05
14:52:23,829 [11528] INFO
Common.Logging.Factory.AbstractLogger.Info(:0) - Starting MyProject
Windows Service.. "
有谁知道如何在不引发此错误的情况下启动此服务?
提前致谢。