-1

最近、Octopus サーバーをバージョン 2.0 から 2.4 にアップグレードしました。サーバーをインストールすることはできますが、次のエラーでクラッシュし続けます:-

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=http://+:8081/octopus/ user=test\SYSTEM
netsh http add urlacl url=http://+:8081/octopus/ user=test\SYSTEM

アンインストールして再インストールしてみました。

4

1 に答える 1

1

私の知る限り、例として次のコマンドを使用すると言えます。

netsh http add urlacl url = http:// + : 8080 / user=\Everyone

状況に応じてポートやパスを調整する必要があります。

netsh http add urlacl url = http:// + : 8080/MyConsoleAppHostedService user=DOMAIN\user

netsh http add urlacl url=http:// + : 8091/MyWindowsServiceHostedService user=\SYSTEM

urlacl を削除するには:

delete urlacl url = https:// * : 8172/
于 2014-06-18T09:38:18.130 に答える