PAW Installation on Windows 2016

Post Reply
mikiluo
Posts: 5
Joined: Tue Dec 07, 2010 2:58 pm
OLAP Product: TM1
Version: 10.1.1 ; 10.2.2 ; PAL 2.0.1
Excel Version: 2010

PAW Installation on Windows 2016

Post 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.
Attachments
PAW Installation.jpg
PAW Installation.jpg (58.17 KiB) Viewed 2085 times
dr.nybble
MVP
Posts: 160
Joined: Wed Aug 17, 2011 3:51 pm
OLAP Product: TM1
Version: 10.2.2
Excel Version: Excel 2007

Re: PAW Installation on Windows 2016

Post 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
Post Reply