Is there any way for installing Vault as a Window service?
I tried to create a Window service using this command:
sc create "Vault" binpath= "path_to_valut\vault.exe server -config path_to_vault\cfg.hcl"
But when i tries to start the service this message shows:
The Vault service failed to start due to the following error:
The service did not respond to the start or control request in a timely fashion.
The reason for this error is becouse each service that is installed in the services needs to implement start, stop interface otherwise it will not stared.
Any idea how to that ?