Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix rms login in windows #334

Merged
merged 1 commit into from
Jul 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cloud/docker/build_image.bat
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,7 @@ if !INSTALLATION_TYPE! EQU frominstallers (
powershell -Command "(Get-Content '!TEMP_FOLDER!\tibcoHome\be\!ARG_BE_SHORT_VERSION!\bin\be-engine.tra') -replace @(Select-String -Path '!TEMP_FOLDER!\tibcoHome\be\!ARG_BE_SHORT_VERSION!\bin\be-engine.tra' -Pattern '^tibco.env.TIB_HOME').Line.Substring(19), 'c:/tibco' | Set-Content '!TEMP_FOLDER!\tibcoHome\be\!ARG_BE_SHORT_VERSION!\bin\be-engine.tra'"

if !IMAGE_NAME! EQU !RMS_IMAGE! (
powershell -Command "Copy-Item '!BE_HOME!\examples\standard\WebStudio' -Destination '!TEMP_FOLDER!\tibcoHome\be\!ARG_BE_SHORT_VERSION!\examples\standard' -Recurse | out-null"
powershell -Command "Copy-Item '!BE_HOME!\examples\standard\WebStudio' -Destination '!TEMP_FOLDER!\tibcoHome\be\!ARG_BE_SHORT_VERSION!\examples\standard\WebStudio' -Recurse | out-null"

if EXIST "!BE_HOME!\decisionmanager" (
powershell -Command "Copy-Item '!BE_HOME!\decisionmanager' -Destination '!TEMP_FOLDER!\tibcoHome\be\!ARG_BE_SHORT_VERSION!' -Recurse | out-null"
Expand Down
4 changes: 1 addition & 3 deletions cloud/docker/dockerfiles/Dockerfile-rms.win
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,7 @@ VOLUME \
"c:\mnt\tibco\be\logs" \
"c:\mnt\tibco\be\data-store" \
"${BE_HOME}\rms\config\notify" \
"${BE_HOME}\rms\config\security" \
"${BE_HOME}\rms\shared" \
"${BE_HOME}\examples\standard\WebStudio"
"${BE_HOME}\rms\shared"

# The following is the list of communication ports that need to be open-n-available
# Port 50000 is AS Listener Port, 50001 is AS Remote Listener Port, 5555 is JMX Port, RMS PORTs 8090 5000
Expand Down
4 changes: 1 addition & 3 deletions cloud/docker/dockerfiles/Dockerfile-rms_fromtar.win
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ VOLUME \
"c:\mnt\tibco\be\logs" \
"c:\mnt\tibco\be\data-store" \
"${BE_HOME}\rms\config\notify" \
"${BE_HOME}\rms\config\security" \
"${BE_HOME}\rms\shared" \
"${BE_HOME}\examples\standard\WebStudio"
"${BE_HOME}\rms\shared"

# The following is the list of communication ports that need to be open-n-available
# # Port 50000 is AS Listener Port, 50001 is AS Remote Listener Port, 5555 is JMX Port, #RMS PORTs 8090 5000
Expand Down