当我尝试运行或启动我的获胜服务时,为什么会出现错误?

时间:2011-06-10 11:21:16

标签: c# windows-services

我有一个无法运行或启动的Windows服务,只能安装或直接调试项目。

这是我的主要内容:

namespace MyService
{
    public static class Program
    {
        private static void Main()
        {
            var ServicesToRun = new System.ServiceProcess.ServiceBase[] { new Service() };
            System.ServiceProcess.ServiceBase.Run(ServicesToRun);
        }
    }
}

这是我的服务:

public partial class Service : ServiceBase
    {
        private dynamic _serviceHost;

        public Service()
        {
            this.InitializeComponent();
            this.ServiceName = "MyService";
            this.CanShutdown = true;
            this.CanStop = true;
        }

        private static string HostName
        {
            get
            {
                string hostName = Dns.GetHostName();
                IPHostEntry ipHostEntry = Dns.GetHostEntry(hostName);
                return ipHostEntry.HostName;
            }
        }

        protected override void OnStart(string[] args)
        {
            var worker = new Thread(this.InitializeHost) { Name = "Host", IsBackground = false };
            worker.Start();
        }

        private void InitializeHost()
        {
            var baseAddress = new Uri(string.Format("net.tcp://{0}:{1}/MyService", HostName, "9020"));
            var mexAddress = new Uri(string.Format("http://{0}:{1}/MyService", HostName, "8000"));
            var cache = Factory.Create<string>("MyAssembly.MyClass", "MyAssembly");
            var service = new ServiceWcf<string>(cache);
            using (this._serviceHost = new Host<string>(service))
            {
                this._serviceHost.Open(baseAddress, mexAddress);
            }
        }

        protected override void OnStop()
        {
            this._serviceHost.Dispose();
        }
    }

当我尝试在没有调试的情况下运行或在安装服务后启动时,我收到以下错误:

运行(直接或通过VS):
尝试运行项目时出错:无法启动程序
'C:\路径\为\我的\项目\ BIN \发布\ MyService.exe'
。 系统找不到指定的路径。

服务开始:
无法启动本地cimpouter上的服务“MyService” 错误3:系统找不到指定的路径。

我不知道错误可能在哪里。

编辑:

private void InitializeComponent()
        {
            this.serviceProcessInstaller = new System.ServiceProcess.ServiceProcessInstaller();
            this.serviceInstaller = new System.ServiceProcess.ServiceInstaller();
            // 
            // serviceProcessInstaller
            // 
            this.serviceProcessInstaller.Account = System.ServiceProcess.ServiceAccount.LocalSystem;
            this.serviceProcessInstaller.Password = null;
            this.serviceProcessInstaller.Username = null;
            // 
            // serviceInstaller
            // 
            this.serviceInstaller.ServiceName = "MyService";
            this.serviceInstaller.DisplayName = "My service";
            this.serviceInstaller.Description = "My service is awesome.";
            this.serviceInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic;
            // 
            // ProjectInstaller
            // 
            this.Installers.AddRange(new System.Configuration.Install.Installer[] {
            this.serviceProcessInstaller,
            this.serviceInstaller});

        }

1 个答案:

答案 0 :(得分:3)

我认为这只是该服务如何注册的问题 - 即它在错误的地方。

从VS命令提示符运行installutil /u [service]以卸载您已有的任何服务条目。

将CD转到要运行服务的文件夹 - 请注意,您将同时拥有调试和发布版本 - 您希望在服务中安装哪一个列出?

在exe上使用installutil /i [service]重新安装。

现在应该可以了。

我认为您可能首先注册了调试版本,然后在构建Release版本之前在构建上运行了Clean操作;从而删除原始可执行文件。要么 - 或许你在最初开发项目之后移动了项目?

我使用的许多开发人员使用不同的文件夹进行本地服务安装,这些文件夹始终相同;然后,他们将调试或发布版本部署到它;因此,当他们想要在两者之间切换时,他们只需复制不同的文件版本。我不这样做 - 我只注册调试版本;但是在测试发布版本时我还有很多工作要做:)