Last active
May 2, 2019 11:26
-
-
Save jglathe/a1fdf55c80a1cfc882af31c978507fa6 to your computer and use it in GitHub Desktop.
Service Tier Administration Tool NAV2018+ add service port 7049 for service tier
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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