Author |
Message
|
lozen |
Posted: Thu Nov 13, 2003 10:08 am Post subject: Error: -3065 |
|
|
Newbie
Joined: 13 Nov 2003 Posts: 4
|
I have a customer whose receiving the following message and would like to know what it means:
DEX-BCN-APP-LD3 - QueueManager = : EAIP02 Channel = : TZ_EAIP02.BCBSM_MQSB Error: -3065
When doing a manual check, this is what's seen:
#runmqsc
0783845, 5765-B73 (C) Copyright IBM Corp. 1994, 2000 ALL RIGHTS RESERVED.
Starting MQSeries Commands.
(cmd:)
DISPLAY CHSTATUS (EAIP02.EAIP01) SAVED
(results:)
1 : DISPLAY CHSTATUS (EAIP02.EAIP01) SAVED
AMQ8417: Display Channel Status details.
CHANNEL(EAIP02.EAIP01) XMITQ(EAIP01)
CONNAME(EAIP01) SAVED
CHLTYPE(SDR) STATUS(RUNNING)
Any ideas on why the -3065 error happened?
thanks,
MJ |
|
Back to top |
|
 |
Carla Viragh |
Posted: Thu Nov 13, 2003 10:51 am Post subject: |
|
|
 Voyager
Joined: 31 Oct 2003 Posts: 92 Location: São Paulo - Brasil
|
How do you get this message? Which tool are you using or you can see this message in a log file? What is the OS? I think this error is a third software that is generating. _________________ Carla Viragh |
|
Back to top |
|
 |
EddieA |
Posted: Thu Nov 13, 2003 4:34 pm Post subject: |
|
|
 Jedi
Joined: 28 Jun 2001 Posts: 2453 Location: Los Angeles
|
If the 3065 is the MQ return code, then:
Quote: |
3065 0x00000bf9 MQRCCF_CHL_STATUS_NOT_FOUND |
Now:
Quote: |
Channel = : TZ_EAIP02.BCBSM_MQSB |
But, from your display:
Quote: |
DISPLAY CHSTATUS (EAIP02.EAIP01) SAVED |
Not the same channel.
Cheers, _________________ Eddie Atherton
IBM Certified Solution Developer - WebSphere Message Broker V6.1
IBM Certified Solution Developer - WebSphere Message Broker V7.0 |
|
Back to top |
|
 |
lozen |
Posted: Fri Nov 14, 2003 11:45 am Post subject: update to -3065 error |
|
|
Newbie
Joined: 13 Nov 2003 Posts: 4
|
Here's what my customer reports:
QueueManager = : EAIP02 Channel = : EAIP01.EAIP02 Error: -3065
But it still works on the client using runmqsc:
DISPLAY CHSTATUS (EAIP02.EAIP01) SAVED
11 : DISPLAY CHSTATUS (EAIP02.EAIP01) SAVED
AMQ8417: Display Channel Status details.
CHANNEL(EAIP02.EAIP01) XMITQ(EAIP01)
CONNAME(EAIP01) SAVED
CHLTYPE(SDR) STATUS(RUNNING)
However the command DISPLAY CHSTATUS (TZ_EAIP02.BCBSM_MQSB) SAVED does not work for this channel????:
DISPLAY CHSTATUS (TZ_EAIP02.BCBSM_MQSB) SAVED
7 : DISPLAY CHSTATUS (TZ_EAIP02.BCBSM_MQSB) SAVED
AMQ8420: Channel Status not found. |
|
Back to top |
|
 |
Carla Viragh |
Posted: Fri Nov 14, 2003 12:11 pm Post subject: |
|
|
 Voyager
Joined: 31 Oct 2003 Posts: 92 Location: São Paulo - Brasil
|
Lozen, once again... You didn´t say the OS you´re using... The saved parameter is for z/OS only... If you try this in windows, the message is that the status was not found.
I think you are tring the same command to diferent channels and maybe the second one is a channel in a windows environment. Right?
And... 3065 is a RC from MQ or from other software? _________________ Carla Viragh |
|
Back to top |
|
 |
lozen |
Posted: Fri Nov 14, 2003 1:12 pm Post subject: additional info on 3065 |
|
|
Newbie
Joined: 13 Nov 2003 Posts: 4
|
My customer is seeing this on AIX 5.1L |
|
Back to top |
|
 |
vennela |
Posted: Fri Nov 14, 2003 1:28 pm Post subject: |
|
|
 Jedi Knight
Joined: 11 Aug 2002 Posts: 4055 Location: Hyderabad, India
|
Carla Viragh:
Quote: |
The saved parameter is for z/OS only |
I must say I do not agree with you on this. saved parameter works just fine on distributed platforms as well.
Lozen:
From the manual
Quote: |
a channel that has never been current cannot have any saved status.
Status is not saved until a persistent message is transmitted across a channel, or a nonpersistent message is transmitted with a NPMSPEED of NORMAL. Because status is saved at the end of each batch, a channel does not have any saved status until at least one batch has been transmitted.
|
So, you should see whether the channel has ever run before, or is it a newly created channel. |
|
Back to top |
|
 |
lozen |
Posted: Fri Nov 14, 2003 1:34 pm Post subject: How? |
|
|
Newbie
Joined: 13 Nov 2003 Posts: 4
|
How can I determine if a channel has ever been run before, or if it is something new? |
|
Back to top |
|
 |
vennela |
Posted: Fri Nov 14, 2003 1:56 pm Post subject: |
|
|
 Jedi Knight
Joined: 11 Aug 2002 Posts: 4055 Location: Hyderabad, India
|
If you do
DISPLAY CHANNEL(channel_name) all
you will get a altered date and time which may help you in determing how old the channel was.
If you can't get
DISPLAY CHS(channel_name) or
DISPLAY CHS(channel_name) ALL,then most likely the channel never ran before. |
|
Back to top |
|
 |
skn |
Posted: Fri Nov 14, 2003 2:45 pm Post subject: |
|
|
 Centurion
Joined: 21 May 2003 Posts: 112 Location: Dallas
|
sometimes if the channel table gets confued
DISPLAY CHSTATUS(channelname) just returns status not found
DISPLAY CHSTATUS(channelname) SAVED will tell you if it ever ran. |
|
Back to top |
|
 |
Prahasith |
Posted: Fri Nov 14, 2003 2:45 pm Post subject: |
|
|
 Disciple
Joined: 16 May 2003 Posts: 184 Location: Kansas City
|
venny
Display channel gives only the created time or altered time
then how can we determine whether it has run before or not
or may be i was confused |
|
Back to top |
|
 |
xxx |
Posted: Mon Nov 17, 2003 1:19 am Post subject: |
|
|
Centurion
Joined: 13 Oct 2003 Posts: 137
|
some times you can know if the channel is started or not from the qmanager logs , I assume that they are not overwritten
Check the /var/mqm/qmgrs/Nameofqmager/errors/AMQ*1 or 2 or 3 |
|
Back to top |
|
 |
Carla Viragh |
Posted: Mon Nov 17, 2003 3:47 am Post subject: |
|
|
 Voyager
Joined: 31 Oct 2003 Posts: 92 Location: São Paulo - Brasil
|
Right, short is the parameter for z/OS only
vennela wrote: |
Carla Viragh:
Quote: |
The saved parameter is for z/OS only |
I must say I do not agree with you on this. saved parameter works just fine on distributed platforms as well.
Lozen:
From the manual
Quote: |
a channel that has never been current cannot have any saved status.
Status is not saved until a persistent message is transmitted across a channel, or a nonpersistent message is transmitted with a NPMSPEED of NORMAL. Because status is saved at the end of each batch, a channel does not have any saved status until at least one batch has been transmitted.
|
So, you should see whether the channel has ever run before, or is it a newly created channel. |
_________________ Carla Viragh |
|
Back to top |
|
 |
Carla Viragh |
Posted: Mon Nov 17, 2003 4:20 am Post subject: |
|
|
 Voyager
Joined: 31 Oct 2003 Posts: 92 Location: São Paulo - Brasil
|
I agree with you... I created a channel and the display chstatus(channel_name) says that the channel is current and running but don´t tell us that it never has been used before... The command display chstatus(channel_name) saved shows the usage
:)
purplemania wrote: |
sometimes if the channel table gets confued
DISPLAY CHSTATUS(channelname) just returns status not found
DISPLAY CHSTATUS(channelname) SAVED will tell you if it ever ran. |
_________________ Carla Viragh |
|
Back to top |
|
 |
|