English 中文(简体)
视窗服务未能在boot开始
原标题:Windows service fails to start on boot

Before I get into the text of this, please be aware that I have already tried the following:

  • Setting the service dependencies
  • Setting an extended timeout

既然这样说,你也许会猜测我的问题是: 我的Windows服务未能在boot上开课,但我可以从服务主管手上开始。 活动记录显示,它确实试图开始boot,但未能及时作出反应。

这项服务并非非同寻常,因为它只打到一个SOAP终点站,操作一些系统指挥,并处理一些WMI查询。 我已经确定这项服务取决于国家安全局的服务和世界海事委员会的服务,但是它仍然未能开始(激励),这告诉我,其他东西是让它无法运行。

我正在利用国家信息社会首脑会议的简单范例进行登记,采用以下选择:

Service Type: SERVICE_WIN32_OWN_PROCESS 
Start Type: SERVICE_AUTO_START 
Dependencies: Winmgmt, Netman, Eventlog, Dnscache
User Name: LocalSystem

我失踪了什么?

最佳回答

提出这一问题的级别低于开端令或此类事情。 它必须涉及我在服务建筑商中的一些初步化法。 一旦我重新证明该法典在建筑商之外移动,所有公司都在运转良好。

感谢你@Aljosha Bre and @Peter K. for their help.

问题回答




相关问题
Python SOAP server / client

I have a problem with Python and SOAP. I need to create a web service based on SOAP in Python. I read that I can use libraries like soaplib, suds and ZSI. I created a Hello World web service with ...

HTTP POST and complex structures

I m trying to send a complex HTTP POST request to a web service. The web service was created using VS2008, in which you can set VS to create HTTP POST and GET interfaces alongside the SOAP one. Now ...

XML-RPC Standard and XML Data Type

I was looking at XML-RPC for a project. And correct me if I m wrong, but it seems like XML-RPC has no XML datatype. Are you supposed to pass as a string? or something else? Am I missing something? ...

Most appropriate API for URL shortening service

I ve just finished an online service for shortening URLs (in php5 with Zend Framework); you can enter an URL and you get an short URL (like tinyurl and such sites). I m thinking about the API for ...

What is the best solution for creating a SOAP Server in PHP?

I need some advice on which library is the best choice when it comes to creating SOAP servers (and eventually SOAP clients) in PHP. I know there is built-in functions for this, but is that really the ...

Logging all Soap request and responses in PHP

Does anyone know how to log all request and responses with the builtin SoapClient in PHP? I could in fact manually log everything with SoapClient::__getLastRequest() and SoapClient::__getLastResponse()...

热门标签