WorkshopSetup.sh script in the 6.x Extensions Lab exercises does not run successfully.
I'm working through the lab exercises in a Linux environment. I have done everything up to page 26.
When I run the WorkshopSetup.sh script, it lists all the environment variables then displays the following two lines of output:
Did I miss something in the setup prior to this step?
The directions indicate that if this script doesn't run successfully, the lab exercises are possible. Is it possible to duplicate the setup manually?
|
Accepted answer
Ralph Schoon (63.5k●3●36●46)
| answered Feb 28 '18, 2:54 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER Ryan,
Ryan McFadden selected this answer as the correct answer
Comments Note, I don't understand the reference to
WorkshopSetup.sh: line 9: fg: no job control
With the following initial lines:
you want to run something like ../JazzTeamServer/server/jre/bin/java -cp ../PlainJavaAPI/*:./* com.ibm.js.rtcext.serversetup.ServerSetup "https://localhost:9443/ccm" "myadmin" "myadmin" You might have to check. In Unix there might be slight differences e.g. the delimiter is : as in the new example, if I am not mistaken.
Ryan McFadden
commented Feb 28 '18, 2:17 p.m.
This is what my script looks like when it worked on my RedHat 6.6 machine #!/bin/sh
export JAVA_HOME="<RELATIVE PATH TO JRE>"
env ${JAVA_HOME}/bin/java -cp ${PLAIN_JAVA}/*:/* com.ibm.js.rtcert.serversetup.ServerSetup ${REPOSITORY} ${USERID} ${PASSWORD} $* Thanks for sharing, Ryan!
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.