Author |
Message |
Topic: MQ PCF Statistics python script |
bobbee
Replies: 0 Views: 4093
|
Forum: General IBM MQ Support Posted: Sat Sep 07, 2024 4:51 am Subject: MQ PCF Statistics python script |
I had a Python script to generate a CSV file, for EXCEL, of MQ Stats. I was reviewing it and saw it was not capturing some things. I rewrote the script and it now leans on the output of MQTOOLS by Col ... |
Topic: Python 3.12 & PYMQI |
bobbee
Replies: 3 Views: 4568
|
Forum: General IBM MQ Support Posted: Wed Sep 04, 2024 4:22 am Subject: Python 3.12 & PYMQI |
BTW, I put ths code in my program for debugging. In the end it finally worked
try:
import _ctypes
print("The _ctypes module is available.")
except ModuleNotFoundErr ... |
Topic: Python 3.12 & PYMQI |
bobbee
Replies: 3 Views: 4568
|
Forum: General IBM MQ Support Posted: Wed Sep 04, 2024 2:39 am Subject: Python 3.12 & PYMQI |
This was frustrating. I was running verification commands against the old, working, installation and was getting the same negative results. I checked the build output and it said it was there. I rebui ... |
Topic: Python 3.12 & PYMQI |
bobbee
Replies: 3 Views: 4568
|
Forum: General IBM MQ Support Posted: Tue Sep 03, 2024 8:54 am Subject: Python 3.12 & PYMQI |
I have been using Python 3.8. I upgraded my scripts and needed 3.10 or above for some supported code.
I am getting the following issue:
ModuleNotFoundError: No module named '_ctypes'
Interest ... |
Topic: NY/NJ MUG |
bobbee
Replies: 0 Views: 9076
|
Forum: General IBM MQ Support Posted: Thu Sep 21, 2023 8:49 am Subject: NY/NJ MUG |
Did the NY/NJ MQ Users Group close down?
I did a Google search and the last meeting dates were way back when I lived in NY. |
Topic: verify MQ OAM running |
bobbee
Replies: 2 Views: 8447
|
Forum: General IBM MQ Support Posted: Wed Jun 28, 2023 8:21 pm Subject: verify MQ OAM running |
thanks |
Topic: verify MQ OAM running |
bobbee
Replies: 2 Views: 8447
|
Forum: General IBM MQ Support Posted: Wed Jun 28, 2023 12:14 pm Subject: verify MQ OAM running |
How does one verify if the OAM service is running? |
Topic: MQCMD_INQUIRE_CONNECTION - Long running tasks |
bobbee
Replies: 1 Views: 6919
|
Forum: General IBM MQ Support Posted: Sat Apr 15, 2023 5:30 am Subject: MQCMD_INQUIRE_CONNECTION - Long running tasks |
I completed and got working two scripts to determine Long Running LUW's on an MQ Server. I placed them in GITHUB for download. One is in Shell, the other in Python using PYMQI. Enjoy and download, the ... |
Topic: PYMQI CONN_ID |
bobbee
Replies: 10 Views: 17015
|
Forum: General IBM MQ Support Posted: Tue Apr 04, 2023 6:23 am Subject: PYMQI CONN_ID |
Thanks M for catching my issue. That part of the code is working. |
Topic: PYMQI CONN_ID |
bobbee
Replies: 10 Views: 17015
|
Forum: General IBM MQ Support Posted: Mon Apr 03, 2023 3:51 pm Subject: PYMQI CONN_ID |
Let me reset that, I was changing all sorts of things trying to get it to work. Missed resetting that. |
Topic: PYMQI CONN_ID |
bobbee
Replies: 10 Views: 17015
|
Forum: General IBM MQ Support Posted: Mon Apr 03, 2023 3:46 pm Subject: PYMQI CONN_ID |
conn_id = str(conn_info[pymqi.CMQCFC.MQBACF_CONNECTION_ID]) |
Topic: PYMQI CONN_ID |
bobbee
Replies: 10 Views: 17015
|
Forum: General IBM MQ Support Posted: Mon Apr 03, 2023 1:39 pm Subject: PYMQI CONN_ID |
I did try you solution:
args= []
args.append(pymqi.CFBS(Parameter=pymqi.CMQCFC.MQBACF_CONNECTION_ID,String=conn_id))
args.a ... |
Topic: MQ Long Running Task Scripts |
bobbee
Replies: 2 Views: 8717
|
Forum: General IBM MQ Support Posted: Mon Apr 03, 2023 11:08 am Subject: MQ Long Running Task Scripts |
I wrote a shell and Python script to search and display Long Running Tasks with an outstanding LUW. The are available to anyone that wants to use them. Good for when you get that 'Out of Log Space' Me ... |
Topic: PYMQI CONN_ID |
bobbee
Replies: 10 Views: 17015
|
Forum: General IBM MQ Support Posted: Thu Mar 23, 2023 7:07 am Subject: PYMQI CONN_ID |
I was trying to use the CONN_ID so I could then issue a INQ_CONN (handle) to get to the specific queues opened for that CONN_ID. For the life of me I could not get it to work.
So I asked for ALL th ... |
Topic: PYMQI CONN_ID |
bobbee
Replies: 10 Views: 17015
|
Forum: General IBM MQ Support Posted: Wed Mar 22, 2023 8:14 am Subject: PYMQI CONN_ID |
I issue an INQUIRE_CONN, I am filtering the CONNs, when I fiind the one I am looking for, I save off the conn_id into conn_id, I then issue the following (I am looking for the list of Object Names ass ... |