代码之家  ›  专栏  ›  技术社区  ›  xzk

安装后无法启动Windows服务

  •  0
  • xzk  · 技术社区  · 6 年前

    我根据这篇文章构建了我的windows服务应用程序。

    https://docs.microsoft.com/en-us/dotnet/framework/windows-services/walkthrough-creating-a-windows-service-application-in-the-component-designer

    MyService.cs ProjectInstaller.cs Designer.cs 以及 .resx 文件。

    在构建项目之后,我将/bin/Debug下的所有内容复制到服务器,并运行 InstallUtil

    我可以在服务列表中看到我的服务,但是

    我的Program.cs文件非常简单

    public static void Main()
            {
    
    
    #if DEBUG
    
                MyService mySvc = new MyService();
                mySvc.OnDebug();
                System.Threading.Thread.Sleep(System.Threading.Timeout.Infinite);
    #else
    
                ServiceBase[] ServicesToRun;
                ServicesToRun = new ServiceBase[] 
                { 
                    new MyService() 
                };
                ServiceBase.Run(ServicesToRun);
    #endif
            }
    

    MyService.cs公司

    public partial class MyService : ServiceBase
        {
            private bool stopping = false;
            private Int32 timeInterval = 0;
            private ManualResetEvent stoppedEvent;
            public static IServiceProvider svcProvider = null;
    
            public MyService()
            {
                InitializeComponent();
                stopping = false;
                stoppedEvent = new ManualResetEvent(false);
                LoadDIStartup();
            }
    
            public void OnDebug()
            {
                StartServiceWorkerMainProcess();
            }
    
            protected override void OnStart(string[] args)
            {
                stopping = false;
                StartServiceWorkerMainProcess();
            }
    
            protected override void OnStop()
            {
                stopping = true;
                StopServiceWorkerMainProcess();
                stoppedEvent.WaitOne(); //Wait for the finish of the ServiceWorkerThread
            }
    
            /// <summary>
            /// The function called in the start event of the the service. And when in Visual Studio Debug Mode run.
            /// </summary>
            public void StartServiceWorkerMainProcess()
            {
                try
                {
                    timeInterval = AppConfig.TimeInterval;
                    // Queue the SubWorker for execution in a worker thread. 
                    ThreadPool.QueueUserWorkItem(new WaitCallback(ServiceWorkerSub));
                }
                catch (Exception e)
                {
                    AppLogger.LogError(" Error while launching the WorkerSub thread. " + "\n" + e.Message + "\n" + e.InnerException + " \n" + e.StackTrace + "\n" + e.Source + "\n");
    
                }
            }
    
            /// <summary>
            /// The function called in the stop event of the the service
            /// </summary>
            public void StopServiceWorkerMainProcess()
            {
                AppLogger.LogInfo(" Service Stopped at " + DateTime.Now.ToShortDateString() + " " + DateTime.Now.ToShortTimeString() + "\n");
            }
    
            private async void ServiceWorkerSub(object state)
            {
                try
                {
                    // Periodically check if the service is stopping
                    while (!stopping)
                    {
                        try
                        {
                            //Do my Stuff (FYI, Mutex is used here.)
                            AppLogger.LogInfo("DONE. About to sleep.");
                        }
                        catch (Exception e)
                        {
                            AppLogger.LogError(" Error. " + "\n" + e.Message + "\n" + e.InnerException + " \n" + e.StackTrace + "\n" + e.Source + "\n");
    
                        }
                        Thread.Sleep(timeInterval);
                    }
                    // Signal the stopped event
                    stoppedEvent.Set();
                }
                catch (Exception e)
                {
                    AppLogger.LogError(" Error in ServiceWorkerSub. " + "\n" + e.Message + "\n" + e.InnerException + " \n" + e.StackTrace + "\n" + e.Source + "\n");
    
                }
            }
    
            private static void LoadDIStartup()
            {
                //Dependency Injection Setup Start
                // blah blah. DI using json files. 
                //Dependency Injection Setup End
    
            }
        }
    

    在设计器视图中,MyService.cs有一个 serviceController1 TestService . ProjectInstaller.cs有一个 serviceProcessInstaller1 serviceInstaller1 测试服务 也。

    项目内部有几个属性文件,并且在本地运行良好。

    我的设置有问题吗?

    2 回复  |  直到 6 年前
        1
  •  1
  •   Ross Bush    6 年前

    构建安装程序时,请确保处于释放模式,否则 #if DEBUG 逻辑开始了。

        2
  •  0
  •   vasily.sib    6 年前

    你需要通知 服务控制经理 OnStart 方法。 Windows 7/8/10版 忽略这个,但是 正在确定您的服务没有正确启动,因此它等待超时并终止您的服务进程。

    “正在设置服务状态” 你提供的链接是文章的一部分。