ServiceAccount.NetworkServiceとしてサービスを実行するようにTopShelfを構成するにはどうすればよいですか?
質問する
4023 次
1 に答える
7
TopShelfの新しい場所http://github.com/Topshelf/Topshelfは、この動作を可能にするパッチで更新されました。
RunConfiguration cfg = RunnerConfigurator.New(x =>
{
x.AfterStoppingTheHost(h => { Console.WriteLine("AfterStop called invoked, services are stopping"); });
x.ConfigureService<TownCrier>(s =>
{
s.Named("tc");
s.HowToBuildService(name=> new TownCrier());
s.WhenStarted(tc => tc.Start());
s.WhenStopped(tc => tc.Stop());
});
// Running as the network service account
x.RunAsNetworkService();
x.SetDescription("Sample Topshelf Host");
x.SetDisplayName("Stuff");
x.SetServiceName("stuff");
});
Runner.Host(cfg, args);
于 2010-07-20T12:18:09.680 に答える