Author |
Message
|
tanishka |
Posted: Mon Nov 24, 2008 5:40 pm Post subject: how to determine client is installed or not? |
|
|
Centurion
Joined: 24 Nov 2008 Posts: 144
|
Hi,
Iam new to MQ series.I need to migrate MQ from old server to new server.In oldserver queue managers running. it mean MQ server is running i know that.How to determine is MQ client installed or not in same server? |
|
Back to top |
|
 |
PeterPotkay |
Posted: Mon Nov 24, 2008 8:18 pm Post subject: |
|
|
 Poobah
Joined: 15 May 2001 Posts: 7722
|
What operating system? _________________ Peter Potkay
Keep Calm and MQ On |
|
Back to top |
|
 |
tanishka |
Posted: Mon Nov 24, 2008 9:07 pm Post subject: |
|
|
Centurion
Joined: 24 Nov 2008 Posts: 144
|
|
Back to top |
|
 |
xhaxk |
Posted: Mon Nov 24, 2008 10:14 pm Post subject: |
|
|
Apprentice
Joined: 30 Oct 2008 Posts: 31
|
On the Solaris machine issue the command:
pkgparam mqm CLASSES
The result is a list of the installed components that make up the mqm
package. If the list includes sol_client the client is installed. |
|
Back to top |
|
 |
tanishka |
Posted: Tue Nov 25, 2008 7:16 am Post subject: |
|
|
Centurion
Joined: 24 Nov 2008 Posts: 144
|
i ran pkgparam mqm CLASSES command output is below
server base runtime man samples base runtime sol_client base runtime |
|
Back to top |
|
 |
tanishka |
Posted: Tue Nov 25, 2008 2:03 pm Post subject: |
|
|
Centurion
Joined: 24 Nov 2008 Posts: 144
|
what are the similar commands to know the client installed or not for HP-UX , AIX and Linux |
|
Back to top |
|
 |
PeterPotkay |
Posted: Tue Nov 25, 2008 6:09 pm Post subject: |
|
|
 Poobah
Joined: 15 May 2001 Posts: 7722
|
|
Back to top |
|
 |
tanishka |
Posted: Tue Nov 25, 2008 9:31 pm Post subject: |
|
|
Centurion
Joined: 24 Nov 2008 Posts: 144
|
documents doesn't shows any commands to determine mq client is installed or not? |
|
Back to top |
|
 |
xhaxk |
Posted: Tue Nov 25, 2008 9:52 pm Post subject: |
|
|
Apprentice
Joined: 30 Oct 2008 Posts: 31
|
AIX
To get the complete list of MQ filesets:
lslpp -al "mqm*"
Sample output:
Fileset Level State Description
----------------------------------------------------------------------------
mqm.base.runtime 6.0.0.0 COMMITTED WebSphere MQ Runtime for
Client and Server
mqm.base.samples 6.0.0.0 COMMITTED WebSphere MQ Samples
mqm.base.sdk 6.0.0.0 COMMITTED WebSphere MQ Base Kit for
Client and Server
mqm.client.rte 6.0.0.0 COMMITTED WebSphere MQ Client for AIX
6.0.2.2 COMMITTED WebSphere MQ Client for AIX
mqm.msg.en_US 6.0.0.0 COMMITTED WebSphere MQ Messages - U.S.
English
mqm.server.rte 6.0.0.0 COMMITTED WebSphere MQ Server
mqm.txclient.rte 6.0.0.0 COMMITTED WebSphere MQ Extended
Transactional Client
To get only the MQ client fileset:
lslpp -al "mqm.client.rte"
Sample output:
Fileset Level State Description
--------------------------------------------------------------
mqm.client.rte 6.0.0.0 COMMITTED WebSphere MQ Client for AIX
6.0.2.2 COMMITTED WebSphere MQ Client for AIX
HP-UX
To get the complete list of MQ filesets:
/usr/sbin/swlist -R MQSERIES
Sample output:
# Initializing...
# Contacting target "aemhp1"...
#
# Target: aemhp1:/
#
# MQSERIES 6.0.0.0 WebSphere MQ for HP-UX
MQSERIES.MQM-BASE 6.0.0.0 WebSphere MQ SDK fileset
MQSERIES.MQM-CL-HPUX 6.0.0.0 WebSphere MQ Client for HP-UX
MQSERIES.MQM-JAVA 6.0.0.0 WebSphere MQ Java Client, JMS and SOAP support
MQSERIES.MQM-JAVASDK 6.0.0.0 HP SDK for J2SE HP-UX 11i platform
MQSERIES.MQM-KEYMAN 6.0.0.0 WebSphere MQ SSL Key management
MQSERIES.MQM-MAN 6.0.0.0 WebSphere MQ man pages
MQSERIES.MQM-RUNTIME 6.0.0.0 WebSphere MQ Runtime fileset
MQSERIES.MQM-SAMPLES 6.0.0.0 WebSphere MQ Sample programs
MQSERIES.MQM-SERVER 6.0.0.0 WebSphere MQ Server fileset
MQSERIES.MQM-TXCLIENT 6.0.0.0 WebSphere MQ Transactional Client
# MQSERIES 6.0.1.1 WebSphere MQ update for HP-UX (U805233)
MQSERIES.MQM-BASE-U805233 6.0.1.1 WebSphere MQ Update for HP-UX
MQSERIES.MQM-CL-HPUX-U805233 6.0.1.1 WebSphere MQ Update for HP-UX
To get only the MQ client fileset:
/usr/sbin/swlist -R MQSERIES | grep MQSERIES.MQM-CL-HPUX
Sample output:
MQSERIES.MQM-CL-HPUX 6.0.0.0 WebSphere MQ Client for HP-UX
MQSERIES.MQM-CL-HPUX-U805233 6.0.1.1 WebSphere MQ Update for HP-UX
Linux
To get the complete list of MQ filesets:
rpm -qa | grep -i mq | sort
Sample output:
MQSeriesClient-6.0.1-0
MQSeriesClient-U806667-6.0.2-0
MQSeriesClient-U810178-6.0.2-2
MQSeriesJava-6.0.1-0
MQSeriesKeyMan-6.0.1-0
MQSeriesMan-6.0.1-0
MQSeriesRuntime-6.0.1-0
MQSeriesSamples-6.0.1-0
MQSeriesSDK-6.0.1-0
MQSeriesServer-6.0.1-0
MQSeriesTXClient-6.0.1-0
To get only the MQ client fileset:
rpm -q MQSeriesClient
Sample output:
MQSeriesClient-6.0.1-0 |
|
Back to top |
|
 |
tanishka |
Posted: Wed Nov 26, 2008 1:15 am Post subject: |
|
|
Centurion
Joined: 24 Nov 2008 Posts: 144
|
Thank so much u for your reply |
|
Back to top |
|
 |
PeterPotkay |
Posted: Wed Nov 26, 2008 10:34 am Post subject: |
|
|
 Poobah
Joined: 15 May 2001 Posts: 7722
|
|
Back to top |
|
 |
tanishka |
Posted: Fri Nov 28, 2008 5:18 pm Post subject: |
|
|
Centurion
Joined: 24 Nov 2008 Posts: 144
|
Thanks so much  |
|
Back to top |
|
 |
tanishka |
Posted: Thu Dec 11, 2008 12:59 pm Post subject: |
|
|
Centurion
Joined: 24 Nov 2008 Posts: 144
|
Can anyone send the coomands on solaris that shows list the MQcomponents we installed. |
|
Back to top |
|
 |
PeterPotkay |
Posted: Thu Dec 11, 2008 3:00 pm Post subject: |
|
|
 Poobah
Joined: 15 May 2001 Posts: 7722
|
All the info you need is already in this post. Read. Think. Do. _________________ Peter Potkay
Keep Calm and MQ On |
|
Back to top |
|
 |
Vitor |
Posted: Thu Dec 11, 2008 3:36 pm Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
tanishka wrote: |
Can anyone send the coomands on solaris that shows list the MQcomponents we installed. |
If you don't know how to list components, ask your Solaris admin. You'll probably need to involve them to add any new stuff anyway. _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
|