Page 1 of 1

PAW Installation on Windows 2016

Posted: Wed Oct 11, 2017 2:39 pm
by mikiluo
I have installed PAW on Windows 2016 using the native PAW image for win 2016.

the PAW admin tools can be accessed by the link http://192.168.170.245:8888/ (as show in the attachement).

could someone tell me which is the Web URL for PAW Login ? I have tried http://192.168.170.245 , but it is not correct.

much thanks.

Re: PAW Installation on Windows 2016

Posted: Wed Oct 11, 2017 8:45 pm
by dr.nybble
If you want to access PAW on the Windows 2016 host, create this PowerShell script in your install's scripts directory:

Code: Select all

# This convenience script launches PAW in the default browser via the pa-gateway container IP
$ErrorActionPreference="Stop"
. "$PSScriptRoot\init.ps1"

$GATEWAY_IP=docker inspect pa-gateway -f '{{.NetworkSettings.Networks.nat.IPAddress}}'
if ($env:EnableSSL -eq $True) {
	start "https://${GATEWAY_IP}"
} else {
	start "http://${GATEWAY_IP}"
}
Or access it from another machine.

You can read about the inability to access via localhost here:
https://docs.docker.com/docker-for-wind ... shed-ports