使用 chef 安装 Windows 服务并使用组托管服务帐户运行它

使用 chef 安装 Windows 服务并使用组托管服务帐户运行它

我正在尝试使用 Chef 设置多个开发服务器。我需要一个 Windows 服务作为托管服务帐户运行。我在配方中有以下内容:

windows_service 'My Windows Service' do
    action :create
    display_name "My Windows Service"
    service_name "MyWindowsService"
    binary_path_name "c:\\Program Files\\MyWindowsService\\MyService.exe"
    startup_type :automatic
    delayed_start true
    run_as_user "Domain\\MyGMSA$"
    description "Describes my service"
end

这样就可以正常注册服务,但会将登录设置为“本地系统帐户”。我还需要指定其他内容才能使其正常工作吗?

相关内容