0

SQL サービスを自動的に再起動するアプリを作成しています。基本的に、これらは私がやっている手順です:

  1. アプリケーションを閉じる
  2. SQL サービスを停止する
  3. SQL サービスを開始する
  4. アプリケーションを開始

私が抱えている問題は、アプリケーションの起動にあります。アプリケーションが SQL サービスの前に開始され、データベース接続エラーが発生しているようです。次の行でサービスのステータスをチェックしていますが、まだ機能していません。

service.WaitForStatus(ServiceControllerStatus.Stopped, timeout);
if (service.Status == ServiceControllerStatus.Stopped)

コード:

static void Main(string[] args)
    {
        PrintMessage("arg 0: " + args[0]);
        PrintMessage("arg 1: " + args[1]);
        PrintMessage("arg 2: " + args[2]);

        Console.Title = "SQL Server Restart";
        PrintMessage("Commencing SQL Server restart. Please wait. . .");

        string serverInstance = args[0];

        ServiceController service = new ServiceController(serverInstance);

        try
        {
            if (service.Status == ServiceControllerStatus.Running)
            {
                PrintMessage("Checking server status");
                TimeSpan timeout = TimeSpan.FromMinutes(5);
                PrintMessage("Stoppping server");
                service.Stop();
                service.Refresh();
                service.WaitForStatus(ServiceControllerStatus.Stopped, timeout);

                if (service.Status == ServiceControllerStatus.Stopped)
                {
                    PrintMessage("Starting server");
                    service.Start();
                    service.Refresh();
                    service.WaitForStatus(ServiceControllerStatus.Running);

                    if (service.Status == ServiceControllerStatus.Running)
                    {
                        PrintMessage("Server started");

                        //Restart application
                        if (args[2] == "False")
                        {
                            PrintMessage("Press any key to continue. . .");

                            Console.ReadKey();
                            Environment.Exit(0);
                        }
                        else
                        {
                            PrintMessage("Starting Application");
                            ProcessStartInfo info = new ProcessStartInfo();
                            info.FileName = args[1];
                            info.WorkingDirectory = Path.GetDirectoryName(info.FileName);
                            Process process = new Process();
                            process.StartInfo.UseShellExecute = false;
                            Process.Start(info);
                            PrintMessage("Application started");
                        }
                    }
                }
            }
        }

        catch (Exception ex)
        {
            Console.WriteLine("Base Exception: " + ex.GetBaseException());
            Console.WriteLine("Inner Exception: " + ex.InnerException);

            Console.WriteLine(ex.Message);
        }

        PrintMessage("Press any key to continue. . .");

        Console.ReadKey();


    }
4

1 に答える 1