Author |
Message
|
sangminli |
Posted: Thu May 21, 2009 11:48 pm Post subject: WMB migration from 5.0 to 6.1 issues - BIP2308E |
|
|
 Voyager
Joined: 26 Aug 2008 Posts: 75 Location: Hangzhou, China
|
currently I am trying to migrate a broker from 5.0 to 6.1. and I keep getting these error msgs in the syslog:
May 20 02:59:07 meaisg05 user:err|error WebSphere Broker v61031544218:
(BMSGD0Q5_B_DV0.default)[1]BIP2308E: File '/opt/IBM/mqsi/6.1/lil/imbphpmgr64.lil' could
not be loaded; operating system return code 'Could not load module
/opt/IBM/mqsi/6.1/lil/imbphpmgr64.lil.: BMSGD0Q5_B_DV0.b1882817-0601-0000-0080-
c5a409fda6e6: /build/S610_P/src/DataFlowEngine/MessageServices/Unix/ImbLibrary.cpp: 126:
ImbLibraryBase::ImbLibraryBase: :
Anyone have any ideas about this? Thanks! |
|
Back to top |
|
 |
Vitor |
Posted: Thu May 21, 2009 11:52 pm Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
What OS & platform? Are you using 32 or 64 bit? If using 64 bit v6.1, are you moving from 32 bit v5.0?
Are you using the migration process given in the documentation? At what point, and under what circumstances, do you get this message? Or start getting this message? _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
sangminli |
Posted: Thu May 21, 2009 11:59 pm Post subject: |
|
|
 Voyager
Joined: 26 Aug 2008 Posts: 75 Location: Hangzhou, China
|
Vitor wrote: |
What OS & platform? Are you using 32 or 64 bit? If using 64 bit v6.1, are you moving from 32 bit v5.0?
Are you using the migration process given in the documentation? At what point, and under what circumstances, do you get this message? Or start getting this message? |
AIX meaisg05 3 5 0005A77D4C00
we used 32 bit, and we are moving from 32 bit v5.0.
we used the processes in the mgiration documentation - mqsimigratecomponents
my colleagues did the mgiration, and when I start the broker, I get a lot of BIP2308E errors. |
|
Back to top |
|
 |
Vitor |
Posted: Fri May 22, 2009 12:21 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
Sounds like you have a variant of this _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
sangminli |
Posted: Fri May 22, 2009 7:14 am Post subject: |
|
|
 Voyager
Joined: 26 Aug 2008 Posts: 75 Location: Hangzhou, China
|
Vitor wrote: |
Sounds like you have a variant of this |
seems that thread was posted by me. and my current issue is not the same as that one.. |
|
Back to top |
|
 |
mqjeff |
Posted: Fri May 22, 2009 7:42 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
The PHPCompute node is only available on windows.
Issue mqsichangebroker -f 6.1.0.2 to prevent your developers from trying to deploy PHPCompute nodes on AIX. |
|
Back to top |
|
 |
sangminli |
Posted: Fri May 22, 2009 7:51 am Post subject: |
|
|
 Voyager
Joined: 26 Aug 2008 Posts: 75 Location: Hangzhou, China
|
mqjeff wrote: |
The PHPCompute node is only available on windows.
Issue mqsichangebroker -f 6.1.0.2 to prevent your developers from trying to deploy PHPCompute nodes on AIX. |
are you talking to me?
i don't know about PHPCompute node.. |
|
Back to top |
|
 |
mqjeff |
Posted: Fri May 22, 2009 8:02 am Post subject: Re: WMB migration from 5.0 to 6.1 issues - BIP2308E |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
sangminli wrote: |
imbphpmgr64.lil |
Looks like a PHPCompute node to me. Could be wrong, but it's worth a check with your developers. |
|
Back to top |
|
 |
sangminli |
Posted: Fri May 22, 2009 8:22 am Post subject: |
|
|
 Voyager
Joined: 26 Aug 2008 Posts: 75 Location: Hangzhou, China
|
i think i've got the answer yesterday, but i am not sure why this doesn't work for me yesterday...
bash-2.02$ echo $MQSI_LILPATH
/opt/IBM/mqsi/6.1/lil:/opt/IBM/mqsi/6.1/jplugin
bash-2.02$ echo $MQSI_LILPATH32
/opt/IBM/mqsi/6.1/lil32:/opt/IBM/mqsi/6.1/jplugin:/opt/IBM/rf42/rfe/lil
bash-2.02$ echo $MQSI_LILPATH64
/opt/IBM/mqsi/6.1/lil:/opt/IBM/mqsi/6.1/jplugin
bash-2.02$ export MQSI_LILPATH=$MQSI_LILPATH32
bash-2.02$ echo $MQSI_LILPATH
/opt/IBM/mqsi/6.1/lil32:/opt/IBM/mqsi/6.1/jplugin:/opt/IBM/rf42/rfe/lil
bash-2.02$ echo $MQSI_LILPATH32
/opt/IBM/mqsi/6.1/lil32:/opt/IBM/mqsi/6.1/jplugin:/opt/IBM/rf42/rfe/lil
bash-2.02$ echo $MQSI_LILPATH64
/opt/IBM/mqsi/6.1/lil:/opt/IBM/mqsi/6.1/jplugin |
|
Back to top |
|
 |
mqjeff |
Posted: Fri May 22, 2009 8:30 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
Adjusting those environment variables in a shell won't change the values given to broker when it started up.
Changing the LIL path by doing anything other than using mqsichangebroker is also not a great idea. |
|
Back to top |
|
 |
sangminli |
Posted: Fri May 22, 2009 8:47 am Post subject: |
|
|
 Voyager
Joined: 26 Aug 2008 Posts: 75 Location: Hangzhou, China
|
mqjeff wrote: |
Adjusting those environment variables in a shell won't change the values given to broker when it started up.
Changing the LIL path by doing anything other than using mqsichangebroker is also not a great idea. |
but it does solve my problem. if i don't change mqsil_lilpath, i would get:
BIP2308E: File '/opt/IBM/mqsi/6.1/lil/imbjcomp64.lil' could not be loaded;
and after i change it, it works ok. |
|
Back to top |
|
 |
|