Windows Server 2012 R2. Server is not in domain.I try to run a service under a local account. Service stops immediately.
If I add the account in local administrators group it can start. But it’s not a workaround because I need to start a service with least privileges.
Application log errors:
2015-10-30 14:44:12.8022 7 FATAL The HTTP server could not start because namespace reservations have not been made. Ensure that the current user has access to listen on these prefixes by running the following command(s):
netsh http add urlacl url=https://+:443/ user=server\user
System.Exception: The HTTP server could not start because namespace reservations have not been made. Ensure that the current user has access to listen on these prefixes by running the following command(s):
netsh http add urlacl url=https://+:443/ user=server\user
2015-10-30 14:44:12.8272 7 FATAL Unhandled AppDomain exception occurred: The HTTP server could not start because namespace reservations have not been made. Ensure that the current user has access to listen on these prefixes by running the following command(s):
netsh http add urlacl url=https://+:443/ user=server\user
System.Exception: The HTTP server could not start because namespace reservations have not been made. Ensure that the current user has access to listen on these prefixes by running the following command(s):
netsh http add urlacl url=https://+:443/ user=server\user
There is no other services on server that listen 443 port.
“netsh http add urlacl url=https://+:443/ user=server\user” command works correctly with administrator’s privileges.
What should I do?