在服务器上安装相同Windows服务的多个实例

时间:2009-08-14 18:24:23

标签: windows windows-services windows-installer installutil

所以我们已经制作了一个Windows服务来将数据提供给我们的客户端应用程序,一切都很顺利。客户端提出了一个有趣的配置请求,该请求要求在同一服务器上运行此服务的两个实例,并将其配置为指向不同的数据库。

到目前为止,我还没有能够实现这一点,并希望我的同事stackoverflow成员可以提供一些关于原因的提示。

当前设置:

我已经设置了包含windows服务的项目,我们将从现在开始将其称为AppService,以及处理自定义安装步骤的ProjectInstaller.cs文件,以根据应用程序中的键设置服务名称。像这样配置:

this.serviceInstaller1.ServiceName = Util.ServiceName;
this.serviceInstaller1.DisplayName = Util.ServiceName;
this.serviceProcessInstaller1.Account = System.ServiceProcess.ServiceAccount.LocalSystem;

在这种情况下,Util只是一个静态类,可以从配置文件中加载服务名称。

从这里开始,我尝试了两种不同的方法来安装这两种服务,并且两种方式都以相同的方式失败。

第一种方法是简单地安装服务的第一个副本,复制已安装的目录并重命名,然后在修改应用程序配置后运行以下命令以更改所需的服务名称:

InstallUtil.exe /i AppService.exe

当这不起作用时,我尝试创建第二个安装程序项目,编辑配置文件并构建第二个安装程序。当我运行安装程序时它工作正常,但服务没有显示在services.msc中,所以我针对第二个已安装的代码库运行了上一个命令。

两次我从InstallUtil收到以下输出(仅限相关部分):

  

运行事务安装。

     

开始安装的安装阶段。

     

安装服务App Service Two ......   Service App Service 2已成功安装。   在日志应用程序中创建EventLog源App Service 2

     

安装阶段发生异常。   System.NullReferenceException:未将对象引用设置为对象的实例。

     

安装的回滚阶段已经开始。

     

将事件日志恢复到源App Service 2的先前状态。   Service App Service 2正在从系统中删除......   Service App Service 2已成功从系统中删除。

     

回滚阶段已成功完成。

     

已完成事务处理安装。   安装失败,并且已执行回滚。

对于冗长的帖子感到抱歉,想确保有足够的相关信息。到目前为止让我感到困惑的是它声明服务的安装成功完成,并且只有在创建了NullReferenceException似乎被抛出的EventLog源之后才能成功完成。因此,如果有人知道我做错了什么或者有更好的方法,那将非常感激。

10 个答案:

答案 0 :(得分:81)

您是否尝试过sc / service controller util?型

sc create

在命令行,它将为您提供帮助条目。我想我过去为Subversion做过这个,并使用this article作为参考:

http://svn.apache.org/repos/asf/subversion/trunk/notes/windows-service.txt

答案 1 :(得分:19)

您可以通过执行以下操作来运行同一服务的多个版本:

1)将Service可执行文件和config复制到自己的文件夹中。

2)将Install.Exe复制到服务可执行文件夹(来自.net framework文件夹)

3)在服务可执行文件夹中创建名为Install.exe.config的配置文件 具有以下内容(唯一服务名称):

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="ServiceName" value="The Service Name"/>
    <add key="DisplayName" value="The Service Display Name"/>
  </appSettings>
</configuration>

4)创建批处理文件以安装具有以下内容的服务:

REM Install
InstallUtil.exe YourService.exe
pause

5)在那里,创建卸载批处理文件

REM Uninstall
InstallUtil.exe -u YourService.exe
pause

修改

请注意,如果我错过了什么,这里是ServiceInstaller类(根据需要调整):

using System.Configuration;

namespace Made4Print
{
    partial class ServiceInstaller
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;
        private System.ServiceProcess.ServiceInstaller FileProcessingServiceInstaller;
        private System.ServiceProcess.ServiceProcessInstaller FileProcessingServiceProcessInstaller;

        /// <summary> 
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Component Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.FileProcessingServiceInstaller = new System.ServiceProcess.ServiceInstaller();
            this.FileProcessingServiceProcessInstaller = new System.ServiceProcess.ServiceProcessInstaller();
            // 
            // FileProcessingServiceInstaller
            // 
            this.FileProcessingServiceInstaller.ServiceName = ServiceName;
            this.FileProcessingServiceInstaller.DisplayName = DisplayName;
            // 
            // FileProcessingServiceProcessInstaller
            // 
            this.FileProcessingServiceProcessInstaller.Account = System.ServiceProcess.ServiceAccount.LocalSystem;
            this.FileProcessingServiceProcessInstaller.Password = null;
            this.FileProcessingServiceProcessInstaller.Username = null;
            // 
            // ServiceInstaller
            // 
            this.Installers.AddRange(new System.Configuration.Install.Installer[] { this.FileProcessingServiceInstaller, this.FileProcessingServiceProcessInstaller });
        }

        #endregion

        private string ServiceName
        {
            get
            {
                return (ConfigurationManager.AppSettings["ServiceName"] == null ? "Made4PrintFileProcessingService" : ConfigurationManager.AppSettings["ServiceName"].ToString());
            }
        }

        private string DisplayName
        {
            get
            {
                return (ConfigurationManager.AppSettings["DisplayName"] == null ? "Made4Print File Processing Service" : ConfigurationManager.AppSettings["DisplayName"].ToString());
            }
        }
    }
}

答案 2 :(得分:18)

  sc create [servicename] binpath= [path to your exe]

这个解决方案对我有用。

答案 3 :(得分:11)

老问题,我知道,但我很幸运使用InstallUtil.exe上的/ servicename选项。我没有看到它在内置帮助中列出。

InstallUtil.exe /servicename="My Service" MyService.exe

我不完全确定我在哪里读到这个,但我从那以后就没见过。 YMMV。

答案 4 :(得分:7)

ServiceNameDisplayName指定自定义值的另一种快捷方法是使用installutil命令行参数。

  1. ProjectInstaller班级覆盖虚拟方法Install(IDictionary stateSaver)Uninstall(IDictionary savedState)

    public override void Install(System.Collections.IDictionary stateSaver)
    {
        GetCustomServiceName();
        base.Install(stateSaver);
    }
    
    public override void Uninstall(System.Collections.IDictionary savedState)
    {
        GetCustomServiceName();
        base.Uninstall(savedState);
    }
    
    //Retrieve custom service name from installutil command line parameters
    private void GetCustomServiceName()
    {
        string customServiceName = Context.Parameters["servicename"];
        if (!string.IsNullOrEmpty(customServiceName))
        {
            serviceInstaller1.ServiceName = customServiceName;
            serviceInstaller1.DisplayName = customServiceName;
        }
    }
    
  2. 构建项目
  3. 使用installutil使用/servicename参数添加自定义名称来安装服务:

    installutil.exe /servicename="CustomServiceName" "c:\pathToService\SrvcExecutable.exe"
    
  4. 请注意,如果未在命令行中指定/servicename,则将安装ServiceInstaller属性/ config

    中指定的ServiceName和DisplayName值的服务

答案 5 :(得分:5)

在使用我们的自动部署软件频繁安装/卸载并排Windows服务时,上述方法没有太多运气,但我最终想出了以下内容,它允许我传入参数到在命令行上为服务名称指定后缀。它还允许设计师正常运行,并且可以根据需要轻松调整以覆盖整个名称。

public partial class ProjectInstaller : System.Configuration.Install.Installer
{
  protected override void OnBeforeInstall(IDictionary savedState)
  {
    base.OnBeforeInstall(savedState);
    SetNames();
  }

  protected override void OnBeforeUninstall(IDictionary savedState)
  {
    base.OnBeforeUninstall(savedState);
    SetNames();
  }

  private void SetNames()
  {
    this.serviceInstaller1.DisplayName = AddSuffix(this.serviceInstaller1.DisplayName);
    this.serviceInstaller1.ServiceName = AddSuffix(this.serviceInstaller1.ServiceName);
  }

  private string AddSuffix(string originalName)
  {
    if (!String.IsNullOrWhiteSpace(this.Context.Parameters["ServiceSuffix"]))
      return originalName + " - " + this.Context.Parameters["ServiceSuffix"];
    else
      return originalName;
  }
}

考虑到这一点,我可以做到以下几点: 如果我将服务称为“真棒服务”,那么我可以按如下方式安装服务的UAT版本:

InstallUtil.exe /ServiceSuffix="UAT" MyService.exe

这将创建名为“Awesome Service - UAT”的服务。我们使用它来运行在一台机器上并行运行的相同服务的DEVINT,TESTING和ACCEPTANCE版本。每个版本都有自己的一组文件/配置 - 我没有尝试过安装指向同一组文件的多个服务。

注意:您必须使用相同的/ServiceSuffix参数来卸载服务,因此您需要执行以下操作来卸载:

InstallUtil.exe /u /ServiceSuffix="UAT" MyService.exe

答案 6 :(得分:4)

我为完成这项工作所做的是将服务名称和显示名称存储在我的服务的app.config中。然后在我的安装程序类中,我将app.config作为XmlDocument加载,并在调用InitializeComponent()之前使用xpath获取值并将它们应用于ServiceInstaller.ServiceName和ServiceInstaller.DisplayName。这假设您尚未在InitializeComponent()中设置这些属性,在这种情况下,配置文件中的设置将被忽略。以下代码是我在安装程序类构造函数中调用的,在InitializeComponent()之前:

       private void SetServiceName()
       {
          string configurationFilePath = Path.ChangeExtension(Assembly.GetExecutingAssembly().Location, "exe.config");
          XmlDocument doc = new XmlDocument();
          doc.Load(configurationFilePath);

          XmlNode serviceName = doc.SelectSingleNode("/xpath/to/your/@serviceName");
          XmlNode displayName = doc.SelectSingleNode("/xpath/to/your/@displayName");

          if (serviceName != null && !string.IsNullOrEmpty(serviceName.Value))
          {
              this.serviceInstaller.ServiceName = serviceName.Value;
          }

          if (displayName != null && !string.IsNullOrEmpty(displayName.Value))
          {
              this.serviceInstaller.DisplayName = displayName.Value;
          }
      }

我不相信直接从ConfigurationManager读取配置文件.AppSettings或类似的东西将在安装程序运行时运行,它在InstallUtil.exe的上下文中运行,而不是您的服务&#39; s .exe。您可能可以使用ConfigurationManager.OpenExeConfiguration执行某些操作,但在我的情况下,这并没有起作用,因为我试图获取未加载的自定义配置部分。

答案 7 :(得分:4)

为了改善@ chris.house.00 this的完美答案,您可以考虑使用以下功能来阅读您的应用设置:

 public void GetServiceAndDisplayName(out string serviceNameVar, out string displayNameVar)
        {
            string configurationFilePath = Path.ChangeExtension(Assembly.GetExecutingAssembly().Location, "exe.config");
            XmlDocument doc = new XmlDocument();
            doc.Load(configurationFilePath);

            XmlNode serviceName = doc.SelectSingleNode("//appSettings//add[@key='ServiceName']");
            XmlNode displayName = doc.SelectSingleNode("//appSettings//add[@key='DisplayName']");


            if (serviceName != null && (serviceName.Attributes != null && (serviceName.Attributes["value"] != null)))
            {
                serviceNameVar = serviceName.Attributes["value"].Value;
            }
            else
            {
                serviceNameVar = "Custom.Service.Name";
            }

            if (displayName != null && (displayName.Attributes != null && (displayName.Attributes["value"] != null)))
            {
                displayNameVar = displayName.Attributes["value"].Value;
            }
            else
            {
                displayNameVar = "Custom.Service.DisplayName";
            }
        }

答案 8 :(得分:2)

我有类似的情况,我需要先前的服务,并在同一台服务器上并排运行更新的服务。 (这不仅仅是数据库更改,也是代码更改)。所以我不能两次运行相同的.exe。我需要一个新的.exe,它是用新的DLL编译的,但是来自同一个项目。只是更改服务名称和服务的显示名称对我来说不起作用,我仍然收到已经存在的&#34;服务错误&#34;我认为是因为我正在使用部署项目。最终为我工作的是在我的部署项目属性中有一个名为&#34; ProductCode&#34;这是一个Guid。

enter image description here

之后,将安装项目重建为新的.exe或.msi安装成功。

答案 9 :(得分:1)

最简单的方法是基于dll名称的服务名称:

string sAssPath = System.Reflection.Assembly.GetExecutingAssembly().Location;
string sAssName = System.IO.Path.GetFileNameWithoutExtension(sAssPath);
if ((this.ServiceInstaller1.ServiceName != sAssName)) {
    this.ServiceInstaller1.ServiceName = sAssName;
    this.ServiceInstaller1.DisplayName = sAssName;
}