JMS password?

Hi all

We are trying to install LMG 4.0 on our test luminis IV server for Banner SSB. In the installation guide step 5 indicates:

java -jar lmgX.x.jar -erp plus/banner -lmbhost lmbserver -dburl
dbserver:port:instance -dbpw mydbpasswd -jmspw myjmspasswd -ldi true/false
-notification true/false

The guide says:
• jmspw is the JMS password to be assigned to sctlmguser. This password is
automatically updated in the mbldisetup script that creates the respective JMS
users, topics, and queues and provides access privileges.

Please someone tell me where can I find such password - JMS password?? Thanks!!

Alan
PCOM

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

I just went through the same process

This past week I also installed LMG for Luminis IV and ran into the same question. I just ended up putting a new password in and I believe the mbldisetup script updates the password for the JMS stuff with the one that's provided on the command line.

Have you ran into many issues during your Luminis IV installation and/or migration from Luminis III? We've found the Luminis IV documentation to be grossly inaccurate and often times there are FAQ's that document the real installation procedure. You only find out about these FAQ's after the fact when something has gone wrong.

Thanks for reply.

Hi Scott

Thank you for your reply.
The luminis IV installation had some problems but we did it. It is the migration that we are still having problems. This Banner SSB installation is the final piece of the Migration of our school, once I finish this, we will wipe out the whole server and start over again.

If you like, we can exchange experience and document (We documented almost every step of the installation and the migration).

We use Windows 2003 as the OS and 2 servers (Resource and Calendar) module.

Alan

re jms password

If you had previously installed LMG and want to use the same password, you can find it in your ldap.

configman -x outputconfig.txt
grep -i messag ~/outputconfig.txt | grep credential

You'll see numerous configman values like:
messaging.datapipeline.admin.credential
messaging.datapipeline.client.cp$cpincoming.credential
etc...
all of which will be the same password.

If you are installing for the first time, just make up a password.

I wrote a bash shell script to help me remember/automate the lmg setup steps.

-bash-3.00$ more lmg-setup.sh
#!/bin/bash

. /mnt/portal/.cprc
echo "SCT_LMG_HOME var must be set in lumadmin .profile"
echo "Grab the j2sdk java setup and install it in the /mnt/portal/lmg, lmg requires a different java version than portal"
echo "Sourcing cprc"
echo "Setting SCT_LMG_HOME"
SCT_LMG_HOME=/mnt/portal/lmg; export SCT_LMG_HOME
echo "Running the lmg4.0.jar file"
/mnt/portal/lmg/j2sdk1.4.2_15/bin/java -jar $SCT_LMG_HOME/lmg4.0.jar -erp banner -lmbhost lmgserver.yourschool.edu -dburl yourbanner.yourschool.edu:1521:DB -dbpw yourpassword -jmspw yourpassword -ldi true -notification true
/mnt/portal/lmg/mbldisetup
echo "Setting messaging.datapipeline.client.cp\$cpincoming.enabled to true"
configman -s messaging.datapipeline.client.cp\$cpincoming.enabled true
echo "Don't forget to change the ldap port from 389 to 636 in event_providers.plist"
echo "Change the java exe path in the startevents file to point to the j2sdk1.4.2_15/bin/java"

Update

Hi Jason

Greetings! I followed your steps and got some questions and errors:

1. We have different Java version, will it matter?
C:\>java -version
java version "1.5.0_10"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_10-b03)
Java HotSpot(TM) Client VM (build 1.5.0_10-b03, mixed mode)

2. When installing LMG, I got the following error, any idea? Again, thank you very much for all your replies!
N:\NucleusFiles\NewNucleus\SCT-4.0>java -jar lmg4.0.jar -erp banner -lmbhost ban
ner-web.pcom.edu -dburl banner-test.pcom.edu:1525:TEST -dbpw integmgrPCOMpasswd -jmspw jmsPCOMpasswd -ldi true -notification true
Exception in thread "main" java.io.IOException: CreateProcess: env error=2
at java.lang.ProcessImpl.create(Native Method)
at java.lang.ProcessImpl.(ProcessImpl.java:81)
at java.lang.ProcessImpl.start(ProcessImpl.java:30)
at java.lang.ProcessBuilder.start(ProcessBuilder.java:451)
at java.lang.Runtime.exec(Runtime.java:591)
at java.lang.Runtime.exec(Runtime.java:429)
at java.lang.Runtime.exec(Runtime.java:326)
at Main.checkEnvVariable(Main.java:152)
at Main.main(Main.java:107)

Alan
PCOM

lmg

When I first installed LMG, it required 1.4, but it looks like the requirements have changed.

LMG 4.0 requires:
• Luminis Platform IV, which incorporates the Smart/Notify event function.
• Banner Intcomp 7.3 or above.
• JDK version 1.4.2.x or 5.x.

So your java version should be fine, unless Sungard has some fine print about a specific version of java 5 (1.5).

This line:
-lmbhost bannner-web.pcom.edu
It is pointing to the server that runs your Luminis Message Broker right?

You might try a different java version, but other than that, you'd better ask Sungard.

Thanks again!

Hi Jason

One more question, You asked:
"This line: -lmbhost bannner-web.pcom.edu
It is pointing to the server that runs your Luminis Message Broker right?"

Sorry but I don't understand your question but how can I find out? I also submitted a help ticket in Sungard and they already replied.

Again, thanks for your great answers!! I will update this post as soon as we solve it.

Alan
PCOM

lmbhost

The lmbhost is the server that you run LMB on. Wherever you can type "mbtool list brokerstatus" and get a reply. If you just have one Luminis server, that's probably where it's running.

I got it to work!

Hi Jason

It is cprc command and SCT_LMG_HOME variable which needs to be initialized.
The installation needs to be performed in a cygwin window instead of a DOS Prompt!

Thanks again for all your replies!

Alan

Syndicate content