Woof.ServiceInstaller
7.0.0
Prefix Reserved
dotnet add package Woof.ServiceInstaller --version 7.0.0
NuGet\Install-Package Woof.ServiceInstaller -Version 7.0.0
<PackageReference Include="Woof.ServiceInstaller" Version="7.0.0" />
paket add Woof.ServiceInstaller --version 7.0.0
#r "nuget: Woof.ServiceInstaller, 7.0.0"
// Install Woof.ServiceInstaller as a Cake Addin #addin nuget:?package=Woof.ServiceInstaller&version=7.0.0 // Install Woof.ServiceInstaller as a Cake Tool #tool nuget:?package=Woof.ServiceInstaller&version=7.0.0
Woof.ServiceInstaller
A part of the Woof Tookit by CodeDog.
Distributed under MIT License. (c)2021 by CodeDog, All rights reserved.
About
Installs and runs system services on Linux and Windows.
When {command}
is your compiled service as one file native executable:
- For help use
{command} --help
. - To install:
sudo {command} --install
- To uninstall:
sudo {command} --uninstall
- To delete Windows Event Log:
{command} --delete-log
Windows
Install your executable with a Microsoft Installer first.
For protected configurations use DataProtectionScope.LocalSystem
.
The service will be registered in the location it was run with the --install
option.
On Windows, Windows Installer (MSI) is the default way to install applications, so the service installer does not copy the files elsewhere.
To check if the service is running use either Services
panel,
or type sc query {serviceName}
in cmd
.
You can also use Windows Event Log to look for entries from the service.
The service runs in LocalSystem
user context.
The account can be changed to NetworkService
via the Account
property
of the service configuration metadata. However - the data protection feature
will work ONLY with LocalSystem
. This applies to Woof.Settings.Protected
and
Woof.Settings.AKV
packages.
When the service is uninstalled with --uninstal
option it will be automatically stopped,
then unregistered. The logs will stay until deleted with --delete-log
option.
Linux
When run with sudo and --install
option, the service will be copied
to the /srv/{serviceName}
directory and the permission for the directory
will be set to user service
(the user account set in configuration).
If the system user service
does not exist it will be created.
The service will be run in service
user context.
The service can be configured to use any system user and group.
Both user and group will be created if they don't exist.
(See the ServiceMetadata XML documentation.)
Linux system services are meant to be installed from a console as root user.
To check if the service is running type service {serviceName} status
.
The logging events from the service will go to the main system log.
When the service is uninstalled with --uninstall
option
the service installed files will be deleted but the service
user will stay.
Also the Linux logs are not cleared.
Usage
- Create a console project.
- Add
Woof.Settings
/Woof.Settings.AKV
/Woof.Settings.Protected
package reference. - Optionally, if data protection is used and the service supports Linux systems,
add
Woof.DataProtection.Linux
package reference. - Create a service configuration JSON file like:
{ "windowsService": { "name": "testsvc", "displayName": "Woof Service Installer Test", "description": "Tests the Woof.ServiceInstaller.", "eventLogName": "Woof.ServiceInstaller", "eventSourceName": "Woof.ServiceInstaller.Test", "eventLogLevelMinimal": "debug" }, "systemDaemon": { "name": "testsvc", "displayName": "Woof Service Installer Test", "eventLogLevelMinimal": "debug", "user": "service", "group": "service" } }
- Create settings class like:
public class Settings : JsonSettingsAkv<Settings> { private Settings() : base(DataProtectionScope.LocalSystem) { } public static Settings Default { get; } = new Settings(); public ServiceMetadataWindows WindowsService { get; } = new(); public ServiceMetadataSystemd SystemDaemon { get; } = new(); }
- Save the file with the name matching the assembly name with
.json
extension. - Set the
Copy to Output Directory
property toCopy if newer
. - Optionally create a corresponding
.access.json
file as described inWoof.Settings.AKV
documentation. - Create
Program.cs
like:ServiceInstaller.AssertAdmin(args); await Settings.Default.LoadAsync(); ServiceMetadata serviceSettings = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? Settings.Default.WindowsService : RuntimeInformation.IsOSPlatform(OSPlatform.Linux) ? Settings.Default.SystemDaemon : throw new PlatformNotSupportedException(); await ServiceInstaller.ConfigureAndRunAsync<TestService>(serviceSettings, args);
The service can be tested, installed and uninstalled with admin access only.
Run without parameters to test the service operation.
Run with -?
switch to display installer help.
Operation / Design
Both Windows Service and Linux systemd use the IHostedService interface.
It allows the service to be started and stopped.
The service executable is a normal executable that starts the service if run
without parameters. The process never exists unless it receives the stop signal
from the host. The services should use the CancellationToken
provided with
Start()
and Stop()
methods.
The services will restart after the host is restarted.
The command line interface
The service installer uses the Woof.CommandLine to provide a unified, POSIX type command line interface.
By default the service installer automatically binds the
--install|-i
, --uninstall|-u
and --delete-log|-d
options
to its internal handlers.
Disclaimer
Woof Toolkit is a work in progress in constant development, however it's carefully maintained with production code quality.
PLEASE report all issues on GitHub!
Describe how to reproduce an issue. Also feel free to suggest new features or improvements.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net7.0
- Microsoft.Extensions.Hosting.Systemd (>= 6.0.0)
- Microsoft.Extensions.Hosting.WindowsServices (>= 6.0.0)
- Woof.CommandLine (>= 7.0.0)
- Woof.LinuxAdmin (>= 7.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
7.0.0 | 257 | 8/6/2023 | |
6.2.0 | 541 | 2/20/2022 | |
6.1.4 | 1,409 | 11/28/2021 | |
6.1.3 | 288 | 11/27/2021 | |
6.1.2 | 1,865 | 11/26/2021 | |
6.0.5 | 2,381 | 11/25/2021 | |
6.0.4 | 291 | 11/17/2021 | |
6.0.3 | 294 | 11/15/2021 | |
6.0.2 | 406 | 11/12/2021 | |
6.0.1 | 374 | 11/11/2021 | |
5.2.7 | 420 | 11/1/2021 | |
5.2.6 | 470 | 10/30/2021 | |
5.2.5 | 434 | 10/20/2021 | |
5.2.4 | 435 | 10/20/2021 | |
5.2.3 | 382 | 10/20/2021 | |
5.2.2 | 391 | 10/15/2021 | |
5.2.1 | 376 | 10/14/2021 | |
5.2.0 | 455 | 10/14/2021 | |
5.1.1 | 429 | 10/13/2021 | |
5.1.0 | 427 | 10/12/2021 | |
5.0.3 | 404 | 8/27/2021 | |
5.0.2 | 442 | 8/27/2021 | |
5.0.1 | 427 | 8/20/2021 | |
5.0.0 | 398 | 8/19/2021 |
.NET7 target.