ASG
IBM
Zystems
Cressida
Icon
Netflexity
 
  MQSeries.net
Search  Search       Tech Exchange      Education      Certifications      Library      Info Center      SupportPacs      LinkedIn  Search  Search                                                                   FAQ  FAQ   Usergroups  Usergroups
 
Register  ::  Log in Log in to check your private messages
 
RSS Feed - WebSphere MQ Support RSS Feed - Message Broker Support

MQSeries.net Forum Index » IBM MQ Installation/Configuration Support » how to determine client is installed or not?

Post new topic  Reply to topic
 how to determine client is installed or not? « View previous topic :: View next topic » 
Author Message
tanishka
PostPosted: Mon Nov 24, 2008 5:40 pm    Post subject: how to determine client is installed or not? Reply with quote

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
View user's profile Send private message
PeterPotkay
PostPosted: Mon Nov 24, 2008 8:18 pm    Post subject: Reply with quote

Poobah

Joined: 15 May 2001
Posts: 7722

What operating system?
_________________
Peter Potkay
Keep Calm and MQ On
Back to top
View user's profile Send private message
tanishka
PostPosted: Mon Nov 24, 2008 9:07 pm    Post subject: Reply with quote

Centurion

Joined: 24 Nov 2008
Posts: 144

solaris
Back to top
View user's profile Send private message
xhaxk
PostPosted: Mon Nov 24, 2008 10:14 pm    Post subject: Reply with quote

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
View user's profile Send private message
tanishka
PostPosted: Tue Nov 25, 2008 7:16 am    Post subject: Reply with quote

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
View user's profile Send private message
tanishka
PostPosted: Tue Nov 25, 2008 2:03 pm    Post subject: Reply with quote

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
View user's profile Send private message
PeterPotkay
PostPosted: Tue Nov 25, 2008 6:09 pm    Post subject: Reply with quote

Poobah

Joined: 15 May 2001
Posts: 7722

Look in the Quick Beginnings guides in the MQ Info Center for each platform:

http://publib.boulder.ibm.com/infocenter/wmqv6/v6r0/topic/com.ibm.mq.amqaac.doc/aq10120_.htm
_________________
Peter Potkay
Keep Calm and MQ On
Back to top
View user's profile Send private message
tanishka
PostPosted: Tue Nov 25, 2008 9:31 pm    Post subject: Reply with quote

Centurion

Joined: 24 Nov 2008
Posts: 144

documents doesn't shows any commands to determine mq client is installed or not?
Back to top
View user's profile Send private message
xhaxk
PostPosted: Tue Nov 25, 2008 9:52 pm    Post subject: Reply with quote

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
View user's profile Send private message
tanishka
PostPosted: Wed Nov 26, 2008 1:15 am    Post subject: Reply with quote

Centurion

Joined: 24 Nov 2008
Posts: 144

Thank so much u for your reply
Back to top
View user's profile Send private message
PeterPotkay
PostPosted: Wed Nov 26, 2008 10:34 am    Post subject: Reply with quote

Poobah

Joined: 15 May 2001
Posts: 7722

tanishka wrote:
documents doesn't shows any commands to determine mq client is installed or not?

Yes, the info is there.

Here is the Linux Doc showing how to see what's installed:
http://publib.boulder.ibm.com/infocenter/wmqv6/v6r0/topic/com.ibm.mq.amq1ac.doc/lq10860_.htm
_________________
Peter Potkay
Keep Calm and MQ On
Back to top
View user's profile Send private message
tanishka
PostPosted: Fri Nov 28, 2008 5:18 pm    Post subject: Reply with quote

Centurion

Joined: 24 Nov 2008
Posts: 144

Thanks so much
Back to top
View user's profile Send private message
tanishka
PostPosted: Thu Dec 11, 2008 12:59 pm    Post subject: Reply with quote

Centurion

Joined: 24 Nov 2008
Posts: 144

Can anyone send the coomands on solaris that shows list the MQcomponents we installed.
Back to top
View user's profile Send private message
PeterPotkay
PostPosted: Thu Dec 11, 2008 3:00 pm    Post subject: Reply with quote

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
View user's profile Send private message
Vitor
PostPosted: Thu Dec 11, 2008 3:36 pm    Post subject: Reply with quote

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
View user's profile Send private message
Display posts from previous:   
Post new topic  Reply to topic Page 1 of 1

MQSeries.net Forum Index » IBM MQ Installation/Configuration Support » how to determine client is installed or not?
Jump to:  



You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Protected by Anti-Spam ACP
 
 


Theme by Dustin Baccetti
Powered by phpBB © 2001, 2002 phpBB Group

Copyright © MQSeries.net. All rights reserved.