Skip to content

Instantly share code, notes, and snippets.

@jglathe
Last active May 2, 2019 11:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jglathe/a1fdf55c80a1cfc882af31c978507fa6 to your computer and use it in GitHub Desktop.
Save jglathe/a1fdf55c80a1cfc882af31c978507fa6 to your computer and use it in GitHub Desktop.
Service Tier Administration Tool NAV2018+ add service port 7049 for service tier
I use Service Tier Administration Tool for managing my service tiers for development. It's a great tool, but currently it is not
fit to handle NAV2018 and above service tiers. After creation with the tool ("create instance") they fail to come up.
To make a newly created service work, you need to add urlacl rights for an additional port (7049) and the user the service is
running on.
Use a cmd session with administrative rights:
netsh http add urlacl url=http://+:7049/P4TA_2018_W1_RTM/ user="NT AUTHORITY\NETWORKSERVICE" listen=yes delegate=no
P4TA_2018_W1_RTM is the service instance name, replace it with yours. Likewise the username, if you don't use the built-in one.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment