依赖于RabbitMQ的Topshelf服务不会在重启时启动

时间:2014-10-13 19:05:03

标签: c# windows-services rabbitmq easynetq

我有一个使用EasyNetQ和RabbitMQ的Windows服务。 该服务通常从服务控制管理器启动。 但是我偶尔看到重启时,服务不会从服务事件日志中的错误开始:

A timeout was reached (30000 milliseconds) 

The <serviceName> service failed to start due to the following error: 
The service did not respond to the start or control request in a timely fashion.

我尝试过自动延迟服务,这没有帮助。

另外,我正在考虑设置恢复机制,这样如果它没有启动,它会在第一次/第二次和随后的故障时重新启动。不确定这是否有效。

所以我的问题是如何确定导致我的服务无法启动的依赖性是什么?

1 个答案:

答案 0 :(得分:0)

为了确定导致错误的依赖项,您可以尝试在TopShelf&#34; OnException&#34;上附加处理程序。 (https://topshelf.readthedocs.io/en/latest/configuration/config_api.html#onexception) 并记录导致错误的异常。