Docker and PAW

Post Reply
kevinfry
Posts: 1
Joined: Fri Mar 27, 2020 3:08 am
OLAP Product: TM1
Version: 10.1
Excel Version: Excel Office 16

Docker and PAW

Post by kevinfry »

Hello - I am using Docker 2.2.0.5 Build 43884. I have PAW with IBM Planning Analytics 2.0.

This is my first post and I am relatively new to Docker and IBM Planning Analytics. So any errors or mistakes in this posting, please let know and I will adjust in the future. I have attempted to provide all the information required for this question. Thank you in advance for any support

I am unable to get into the docker cmd line window. When I start it up, I get the following message:

Starting "paw"...
(paw) Check network to re-create if needed...
(paw) Windows might ask for the permission to configure a dhcp server. Sometimes, such confirmation window is minimized in the taskbar.
listen tcp4 127.0.0.1:50851: bind: Only one usage of each socket address (protocol/network address/port) is normally permitted.

@echo off
REM Start up a bash shell and run the Windows start script for IBM Planning Analytics Workspace
SET PAW_DIR=%~dp0

SET DOCKER_MACHINE_NAME=paw
SET VM_MEMORY=8192
SET VM_CPU_COUNT=4
SET VM_DISK_SIZE=50000
SET HOSTONLY_CIDR=XXX.YYY.AA.1/24 <= The XXX.YYY.AA represents the same IP adddress on each line.
SET STATIC_IP=XXX.YYY.AA.100
SET NETMASK=FFF.FFF.FFF.0
SET BROADCAST_IP=XXX.YYY.AA.255
SET HTTP_PORT=80
SET HTTPS_PORT=443
SET NO_PROMPT=n

REM Avoid a breaking change in Docker Compose 1.9
SET COMPOSE_CONVERT_WINDOWS_PATHS=1

REM Share the parent directory with the Virtual Machine
cd %PAW_DIR%/..
SET HOST_SHARED_FOLDER=%CD%
cd %PAW_DIR%

SETLOCAL ENABLEEXTENSIONS
SET KEY_NAME="HKEY_LOCAL_MACHINE\SOFTWARE\GitForWindows"
SET VALUE_NAME="InstallPath"

FOR /F "tokens=2*" %%A IN ('REG.exe query "%KEY_NAME%" /v "%VALUE_NAME%"') DO (set GIT_PATH=%%B)

IF NOT "%GIT_PATH%"=="" (
SET BASH_PATH=%GIT_PATH%\bin\bash.exe
) ELSE (
SET BASH_PATH=C:\Program Files\Git\bin\bash.exe
)

if exist "%BASH_PATH%" (
SET TERM=
start "IBM Planning Analytics Workspace Administration" "%BASH_PATH%" --login -i "scripts\winstart.sh"
) else (
@echo on
echo Install Docker Toolbox for Windows and try again.
explorer "https://www.docker.com/products/docker-toolbox"
pause
)
Post Reply