Author |
Message
|
mlotfi |
Posted: Thu Feb 11, 2016 7:55 am Post subject: how install MQ in ubuntu ? |
|
|
Acolyte
Joined: 07 Jul 2015 Posts: 60
|
Hi,
Maybe this is an easy or stupid question, please bear with me, I am a beginner in linux and MQ, I have downloaded the rpm packages , from documentation :
http://www-01.ibm.com/support/knowledgecenter/SSFKSJ_7.5.0/com.ibm.mq.ins.doc/q115250_.htm?lang=en
it said :
Code: |
rpm -ivh --nodeps --force-debian MQSeriesServer-*.rpm MQSeriesJRE-*.rpm MQSeriesJava-*.rpm
|
is there any order I have to do, or can I just do :
Code: |
rpm -ivh --nodeps --force-debian *.rpm
|
Thanks, your help is appreciated. |
|
Back to top |
|
 |
Philip Morten |
Posted: Thu Feb 11, 2016 8:17 am Post subject: |
|
|
Master
Joined: 07 Mar 2002 Posts: 230 Location: Hursley Park
|
Install MQSeriesRuntime first, then, using Table 1 on that page, ensure that for each package that you need, its prereq(s) are installed first. _________________ Philip Morten
The postings on this site are my own and do not necessarily represent IBM's positions, strategies or opinions. |
|
Back to top |
|
 |
mlotfi |
Posted: Thu Feb 11, 2016 8:27 am Post subject: |
|
|
Acolyte
Joined: 07 Jul 2015 Posts: 60
|
that table 1 is for MQ 7.5 , mu rpm pachakes are MQ 8, for example there are some files in MQ8 that does not exist in MQ7.5 :
MQSeriesAMQP-8.0.0-4.x86_64.rpm |
|
Back to top |
|
 |
bruce2359 |
Posted: Thu Feb 11, 2016 8:57 am Post subject: |
|
|
 Poobah
Joined: 05 Jan 2008 Posts: 9469 Location: US: west coast, almost. Otherwise, enroute.
|
|
Back to top |
|
 |
mlotfi |
Posted: Thu Feb 11, 2016 10:15 am Post subject: |
|
|
Acolyte
Joined: 07 Jul 2015 Posts: 60
|
|
Back to top |
|
 |
mqjeff |
Posted: Thu Feb 11, 2016 10:23 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
If you do tell it to install *.rpm, it will usually work out what needs to be installed in what order.
But it will in fact install *everything*, including all of the language translations and etc that you probably don't need... _________________ chmod -R ugo-wx / |
|
Back to top |
|
 |
Philip Morten |
Posted: Fri Feb 12, 2016 8:51 am Post subject: |
|
|
Master
Joined: 07 Mar 2002 Posts: 230 Location: Hursley Park
|
mqjeff wrote: |
If you do tell it to install *.rpm, it will usually work out what needs to be installed in what order.
|
That is generally true but the problem with installing MQ 7.5 on Ubuntu is that you have to turn off dependency checking (--nodeps) because the rpm database is empty and the rpm build process inserts a requirement for /bin/sh. _________________ Philip Morten
The postings on this site are my own and do not necessarily represent IBM's positions, strategies or opinions. |
|
Back to top |
|
 |
mqjeff |
Posted: Fri Feb 12, 2016 8:57 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
Philip Morten wrote: |
mqjeff wrote: |
If you do tell it to install *.rpm, it will usually work out what needs to be installed in what order.
|
That is generally true but the problem with installing MQ 7.5 on Ubuntu is that you have to turn off dependency checking (--nodeps) because the rpm database is empty and the rpm build process inserts a requirement for /bin/sh. |
 _________________ chmod -R ugo-wx / |
|
Back to top |
|
 |
|