Author |
Message
|
enigma |
Posted: Wed Jul 13, 2005 10:55 pm Post subject: MS03 installation |
|
|
Newbie
Joined: 28 Jun 2005 Posts: 8
|
Hi
I am using MQ on AIX.The AIX system is remote.How do I know if the service pack MS03 pack has been installed on my system successfully or not?
In which directory do I find the 'saveqmgr' command?
Thanks in advance |
|
Back to top |
|
 |
Nigelg |
Posted: Wed Jul 13, 2005 11:25 pm Post subject: |
|
|
Grand Master
Joined: 02 Aug 2004 Posts: 1046
|
Let AIX find it for you if you are too lazy or stupid to do it yourself.
Try...
find / -name saveqmgr |
|
Back to top |
|
 |
sebastianhirt |
Posted: Wed Jul 13, 2005 11:25 pm Post subject: |
|
|
Yatiri
Joined: 07 Jun 2004 Posts: 620 Location: Germany
|
Hi,
I think it comes as a tar file. Just untar it and run it.
It is installed if the binar is there.
cheers
Sebastian |
|
Back to top |
|
 |
wschutz |
Posted: Thu Jul 14, 2005 1:52 am Post subject: |
|
|
 Jedi Knight
Joined: 02 Jun 2005 Posts: 3316 Location: IBM (retired)
|
Actually, for AIX it would be:
find . -name saveqmgr.aix
But you will find it in the directory where you did:
uncompress -c ms03.tar.Z | tar xv _________________ -wayne |
|
Back to top |
|
 |
vennela |
Posted: Thu Jul 14, 2005 7:12 am Post subject: |
|
|
 Jedi Knight
Joined: 11 Aug 2002 Posts: 4055 Location: Hyderabad, India
|
wschutz wrote: |
Actually, for AIX it would be:
find . -name saveqmgr.aix |
This will only find in the directories under the directory where you run the command from.
Code: |
find / -name saveqmgr |
This would search the entire filesystem, but it has to be run as root so that it can look in all the directories (permissions).
But, if you want to run saveqmgr and don't know where it is, I would download and copy the file and run it because that would be lot easier/faster to do. |
|
Back to top |
|
 |
wschutz |
Posted: Thu Jul 14, 2005 7:29 am Post subject: |
|
|
 Jedi Knight
Joined: 02 Jun 2005 Posts: 3316 Location: IBM (retired)
|
Quote: |
find / -name saveqmgr |
yes, but there is no file called "saveqmgr" in the package, so wouldn't it need to be:
Code: |
find / -name saveqmgr.aix |
_________________ -wayne |
|
Back to top |
|
 |
WillH |
Posted: Thu Jul 14, 2005 8:26 am Post subject: |
|
|
Novice
Joined: 15 Jun 2005 Posts: 23
|
Or even
Code: |
find / -name saveqmgr* 2>/dev/null
|
|
|
Back to top |
|
 |
Nigelg |
Posted: Tue Jul 26, 2005 5:47 am Post subject: |
|
|
Grand Master
Joined: 02 Aug 2004 Posts: 1046
|
On AIX it has to be
Quote: |
find / -name 'saveqmgr*' 2>/dev/nul |
to protect the metacharacter from the shell. |
|
Back to top |
|
 |
|