SlideShare ist ein Scribd-Unternehmen logo
1 von 9
Knowledge ispower.SoWise share it
Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.1
Three DQMs whereQM1 Queue Manager acting as Receiver and Sender.
C:WINDOWSsystem32>RUNMQSCQM2
5724-H72 (C) CopyrightIBMCorp. 1994, 2018.
StartingMQSC for queue managerQM2.
DEFINE QL(L2)
1 : DEFINEQL(L2)
AMQ8006I: IBMMQ queue created.
DEFINE CHANNEL(TO.QM2) CHLTYPE(RCVR)
2 : DEFINECHANNEL(TO.QM2) CHLTYPE(RCVR)
AMQ8014I: IBMMQ channel created.
DEFINE LSTR(QM2.LSTR) TRPTYPE(TCP) PORT(1415)
3 : DEFINELSTR(QM2.LSTR) TRPTYPE(TCP) PORT(1415)
AMQ8626I: IBMMQ listenercreated.
START LSTR(QM2.LSTR)
4 : STARTLSTR(QM2.LSTR)
AMQ8021I: Requesttostart IBMMQ listeneraccepted.
DIS LSSTATUS(*) ALL
5 : DISLSSTATUS(*) ALL
AMQ8631I: Displaylistenerstatusdetails.
LISTENER(QM2.LSTR) STATUS(RUNNING)
Knowledge ispower.SoWise share it
Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.2
PID(4164) STARTDA(2022-03-22)
STARTTI(12.15.22) DESCR( )
TRPTYPE(TCP) CONTROL(MANUAL)
IPADDR(*) PORT(1415)
BACKLOG(100)
END
6 : END
5 MQSC commandsread.
C:WINDOWSsystem32>RUNMQSCQM1
5724-H72 (C) CopyrightIBMCorp. 1994, 2018.
StartingMQSC for queue managerQM1.
DEFINE QL(QM2.XQ) USAGE(XMITQ)
1 : DEFINEQL(QM2.XQ) USAGE(XMITQ)
AMQ8006I: IBMMQ queue created.
DEFINE QR(SENDQ) RNAME(L2) RQMNAME(QM2) XMITQ(QM2.XQ)
2 : DEFINEQR(SENDQ) RNAME(L2) RQMNAME(QM2) XMITQ(QM2.XQ)
AMQ8006I: IBMMQ queue created.
DEFINE CHANNEL(TO.QM2) CHLTYPE(SDR) XMITQ(QM2.XQ) CONNAME('LOCALHOST(1415)')
3 : DEFINECHANNEL(TO.QM2) CHLTYPE(SDR) XMITQ(QM2.XQ) CONNAME('LOCALHOST(1415)')
AMQ8014I: IBMMQ channel created.
START CHANNEL(TO.QM2)
4 : STARTCHANNEL(TO.QM2)
AMQ8018I: Start IBMMQ channel accepted.
DIS CHS(TO.QM2)
5 : DISCHS(TO.QM2)
AMQ8417I: DisplayChannel Statusdetails.
CHANNEL(TO.QM2) CHLTYPE(SDR)
CONNAME(127.0.0.1(1415)) CURRENT
Knowledge ispower.SoWise share it
Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.3
RQMNAME(QM2) STATUS(RUNNING)
SUBSTATE(MQGET) XMITQ(QM2.XQ)
END
6 : END
5 MQSC commandsread.
No commandshave a syntax error.
All validMQSCcommandswere processed.
C:WINDOWSsystem32>RUNMQSCQM1
5724-H72 (C) CopyrightIBMCorp. 1994, 2018.
StartingMQSC for queue managerQM1.
DEFINE QL(L2.R)
1 : DEFINEQL(L2.R)
AMQ8006I: IBMMQ queue created.
DEFINE CHANNEL(TO.QM1) CHLTYPE(RCVR)
2 : DEFINECHANNEL(TO.QM1) CHLTYPE(RCVR)
AMQ8014I: IBMMQ channel created.
DEFINE LSTR(QM1.LSTR) TRPTYPE(TCP) PORT(1414)
3 : DEFINELSTR(QM1.LSTR) TRPTYPE(TCP) PORT(1414)
AMQ8626I: IBMMQ listenercreated.
START LSTR(QM1.LSTR)
4 : STARTLSTR(QM1.LSTR)
AMQ8021I: Requesttostart IBMMQ listeneraccepted.
DIS LSSTATUS(QM1.LSTR)
5 : DISLSSTATUS(QM1.LSTR)
AMQ8631I: Displaylistenerstatusdetails.
LISTENER(QM1.LSTR) STATUS(RUNNING)
PID(18420) STARTDA(2022-03-22)
STARTTI(12.22.42) DESCR( )
Knowledge ispower.SoWise share it
Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.4
TRPTYPE(TCP) CONTROL(MANUAL)
IPADDR(*) PORT(1414)
BACKLOG(100)
END
6 : END
5 MQSC commandsread.
No commandshave a syntax error.
All validMQSCcommandswere processed.
C:WINDOWSsystem32>RUNMQSCQM3
5724-H72 (C) CopyrightIBMCorp. 1994, 2018.
StartingMQSC for queue managerQM3.
DEFINE QL(L2.R.XQ) USAGE(XMITQ)
1 : DEFINEQL(L2.R.XQ) USAGE(XMITQ)
AMQ8006I: IBMMQ queue created.
DEFINE QR(SENDQ1) RNAME(L2.R) RQMNAME(QM1) XMITQ(L2.R.XQ)
3 : DEFINEQR(SENDQ1) RNAME(L2.R) RQMNAME(QM1) XMITQ(L2.R.XQ)
AMQ8006I: IBMMQ queue created.
DEFINE CHANNEL(TO.QM1) CHLTYPE(SDR) XMITQ(L2.R.XQ) CONNAME('LOCALHOST(1414)')
4 : DEFINECHANNEL(TO.QM1) CHLTYPE(SDR) XMITQ(L2.R.XQ) CONNAME('LOCALHOST(1414)')
AMQ8014I: IBMMQ channel created.
START CHANNEL(TO.QM1)
5 : STARTCHANNEL(TO.QM1)
AMQ8018I: Start IBMMQ channel accepted.
DIS CHS(TO.QM1)
6 : DISCHS(TO.QM1)
AMQ8417I: DisplayChannel Statusdetails.
Knowledge ispower.SoWise share it
Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.5
CHANNEL(TO.QM1) CHLTYPE(SDR)
CONNAME(127.0.0.1(1414)) CURRENT
RQMNAME(QM1) STATUS(RUNNING)
SUBSTATE(MQGET) XMITQ(L2.R.XQ)
END
7 : END
6 MQSC commandsread.
One commandhas a syntax error.
All validMQSCcommandswere processed.
C:WINDOWSsystem32>AMQSPUTSENDQ1QM3
Sample AMQSPUT0 start
target queue isSENDQ1
HI
HELO
Sample AMQSPUT0 end
C:WINDOWSsystem32>AMQSPUTSENDQQM1
Sample AMQSPUT0 start
target queue isSENDQ
HASU
SASSU
Sample AMQSPUT0 end
C:WINDOWSsystem32>AMQSGETL2 QM2
Sample AMQSGET0 start
message <HASU>
message <SASSU>
^C
Knowledge ispower.SoWise share it
Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.6
C:WINDOWSsystem32>AMQSGETL2.R QM1
Sample AMQSGET0 start
message <HI>
message <HELO>
no more messages
Sample AMQSGET0 end
Knowledge ispower.SoWise share it
Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.7
Knowledge ispower.SoWise share it
Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.8
Knowledge ispower.SoWise share it
Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.9

Weitere ähnliche Inhalte

Was ist angesagt?

The paxos commit algorithm
The paxos commit algorithmThe paxos commit algorithm
The paxos commit algorithmahmed hamza
 
Stop and Wait arq
Stop and Wait arqStop and Wait arq
Stop and Wait arqpramodmmrv
 
COMPARISON OF HIGH SPEED CONGESTION CONTROL PROTOCOLS
COMPARISON OF HIGH SPEED CONGESTION CONTROL PROTOCOLSCOMPARISON OF HIGH SPEED CONGESTION CONTROL PROTOCOLS
COMPARISON OF HIGH SPEED CONGESTION CONTROL PROTOCOLSIJNSA Journal
 
Clans Aggregation for Verification of Networking Protocols on Parallel Archit...
Clans Aggregation for Verification of Networking Protocols on Parallel Archit...Clans Aggregation for Verification of Networking Protocols on Parallel Archit...
Clans Aggregation for Verification of Networking Protocols on Parallel Archit...DmitryZaitsev5
 
3a data link layer continued
3a data link layer continued3a data link layer continued
3a data link layer continuedkavish dani
 
Troubleshooting TCP/IP
Troubleshooting TCP/IPTroubleshooting TCP/IP
Troubleshooting TCP/IPvijai s
 
Building a QT based solution on a i.MX7 processor running Linux and FreeRTOS
Building a QT based solution on a i.MX7 processor running Linux and FreeRTOSBuilding a QT based solution on a i.MX7 processor running Linux and FreeRTOS
Building a QT based solution on a i.MX7 processor running Linux and FreeRTOSFernando Luiz Cola
 
Istanbul BFT
Istanbul BFTIstanbul BFT
Istanbul BFTYu-Te Lin
 
Investigating the Use of Synchronized Clocks in TCP Congestion Control
Investigating the Use of Synchronized Clocks in TCP Congestion ControlInvestigating the Use of Synchronized Clocks in TCP Congestion Control
Investigating the Use of Synchronized Clocks in TCP Congestion ControlMichele Weigle
 

Was ist angesagt? (19)

The paxos commit algorithm
The paxos commit algorithmThe paxos commit algorithm
The paxos commit algorithm
 
Group B Ppt
Group B PptGroup B Ppt
Group B Ppt
 
Lect9 (1)
Lect9 (1)Lect9 (1)
Lect9 (1)
 
Important tcpudp protocols
Important tcpudp protocolsImportant tcpudp protocols
Important tcpudp protocols
 
A Baker's dozen of TCP
A Baker's dozen of TCPA Baker's dozen of TCP
A Baker's dozen of TCP
 
Crisman_tcp_UDP
Crisman_tcp_UDPCrisman_tcp_UDP
Crisman_tcp_UDP
 
Stop and Wait arq
Stop and Wait arqStop and Wait arq
Stop and Wait arq
 
Week5 lec1-bscs1
Week5 lec1-bscs1Week5 lec1-bscs1
Week5 lec1-bscs1
 
COMPARISON OF HIGH SPEED CONGESTION CONTROL PROTOCOLS
COMPARISON OF HIGH SPEED CONGESTION CONTROL PROTOCOLSCOMPARISON OF HIGH SPEED CONGESTION CONTROL PROTOCOLS
COMPARISON OF HIGH SPEED CONGESTION CONTROL PROTOCOLS
 
Go Back N Arq1
Go  Back N Arq1Go  Back N Arq1
Go Back N Arq1
 
Clans Aggregation for Verification of Networking Protocols on Parallel Archit...
Clans Aggregation for Verification of Networking Protocols on Parallel Archit...Clans Aggregation for Verification of Networking Protocols on Parallel Archit...
Clans Aggregation for Verification of Networking Protocols on Parallel Archit...
 
Fast020702
Fast020702Fast020702
Fast020702
 
Cubic
CubicCubic
Cubic
 
3a data link layer continued
3a data link layer continued3a data link layer continued
3a data link layer continued
 
Lect9
Lect9Lect9
Lect9
 
Troubleshooting TCP/IP
Troubleshooting TCP/IPTroubleshooting TCP/IP
Troubleshooting TCP/IP
 
Building a QT based solution on a i.MX7 processor running Linux and FreeRTOS
Building a QT based solution on a i.MX7 processor running Linux and FreeRTOSBuilding a QT based solution on a i.MX7 processor running Linux and FreeRTOS
Building a QT based solution on a i.MX7 processor running Linux and FreeRTOS
 
Istanbul BFT
Istanbul BFTIstanbul BFT
Istanbul BFT
 
Investigating the Use of Synchronized Clocks in TCP Congestion Control
Investigating the Use of Synchronized Clocks in TCP Congestion ControlInvestigating the Use of Synchronized Clocks in TCP Congestion Control
Investigating the Use of Synchronized Clocks in TCP Congestion Control
 

Ähnlich wie Queue Manager both as sender and Receiver.docx

Where is My Message?: Use MQ Tools to Work Out What Applications Have Done
Where is My Message?: Use MQ Tools to Work Out What Applications Have DoneWhere is My Message?: Use MQ Tools to Work Out What Applications Have Done
Where is My Message?: Use MQ Tools to Work Out What Applications Have DoneMorag Hughson
 
HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...
HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...
HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...Matt Leming
 
GSM Signaling Procedure in detail presented.ppt
GSM Signaling Procedure in detail presented.pptGSM Signaling Procedure in detail presented.ppt
GSM Signaling Procedure in detail presented.pptKedirHassen3
 
Monitoring and problem determination of your mq distributed systems
Monitoring and problem determination of your mq distributed systemsMonitoring and problem determination of your mq distributed systems
Monitoring and problem determination of your mq distributed systemsmatthew1001
 
Where is my MQ message on z/OS?
Where is my MQ message on z/OS?Where is my MQ message on z/OS?
Where is my MQ message on z/OS?Matt Leming
 
Pf: the OpenBSD packet filter
Pf: the OpenBSD packet filterPf: the OpenBSD packet filter
Pf: the OpenBSD packet filterGiovanni Bechis
 
Specification-Based Test Program Generation for ARM VMSAv8-64 MMUs
Specification-Based Test Program Generation for ARM VMSAv8-64 MMUsSpecification-Based Test Program Generation for ARM VMSAv8-64 MMUs
Specification-Based Test Program Generation for ARM VMSAv8-64 MMUsAlexander Kamkin
 
IBM IMPACT 2014 - AMC-1883 - Where's My Message - Analyze IBM WebSphere MQ Re...
IBM IMPACT 2014 - AMC-1883 - Where's My Message - Analyze IBM WebSphere MQ Re...IBM IMPACT 2014 - AMC-1883 - Where's My Message - Analyze IBM WebSphere MQ Re...
IBM IMPACT 2014 - AMC-1883 - Where's My Message - Analyze IBM WebSphere MQ Re...Peter Broadhurst
 
Transport Layer in Computer Networks (TCP / UDP / SCTP)
Transport Layer in Computer Networks (TCP / UDP / SCTP)Transport Layer in Computer Networks (TCP / UDP / SCTP)
Transport Layer in Computer Networks (TCP / UDP / SCTP)Hamidreza Bolhasani
 
Performance Metrics Overview
Performance Metrics OverviewPerformance Metrics Overview
Performance Metrics OverviewRudyansyah -
 
LF_DPDK17_Accelerating P4-based Dataplane with DPDK
LF_DPDK17_Accelerating P4-based Dataplane with DPDKLF_DPDK17_Accelerating P4-based Dataplane with DPDK
LF_DPDK17_Accelerating P4-based Dataplane with DPDKLF_DPDK
 
XPDS13: On Paravirualizing TCP - Congestion Control on Xen VMs - Luwei Cheng,...
XPDS13: On Paravirualizing TCP - Congestion Control on Xen VMs - Luwei Cheng,...XPDS13: On Paravirualizing TCP - Congestion Control on Xen VMs - Luwei Cheng,...
XPDS13: On Paravirualizing TCP - Congestion Control on Xen VMs - Luwei Cheng,...The Linux Foundation
 
L2 MAC LTE PROCEDURES revC
L2 MAC LTE PROCEDURES revCL2 MAC LTE PROCEDURES revC
L2 MAC LTE PROCEDURES revCVincent Daumont
 
Callflows 121002232008-phpapp01
Callflows 121002232008-phpapp01Callflows 121002232008-phpapp01
Callflows 121002232008-phpapp01Abiy Almaw
 

Ähnlich wie Queue Manager both as sender and Receiver.docx (20)

Where is My Message?: Use MQ Tools to Work Out What Applications Have Done
Where is My Message?: Use MQ Tools to Work Out What Applications Have DoneWhere is My Message?: Use MQ Tools to Work Out What Applications Have Done
Where is My Message?: Use MQ Tools to Work Out What Applications Have Done
 
HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...
HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...
HHM-2833: Where is My Message?: Using IBM MQ Tools to Work Out What Applicati...
 
GSM Signaling Procedure in detail presented.ppt
GSM Signaling Procedure in detail presented.pptGSM Signaling Procedure in detail presented.ppt
GSM Signaling Procedure in detail presented.ppt
 
Lte protocols
Lte protocolsLte protocols
Lte protocols
 
Monitoring and problem determination of your mq distributed systems
Monitoring and problem determination of your mq distributed systemsMonitoring and problem determination of your mq distributed systems
Monitoring and problem determination of your mq distributed systems
 
RAZORPOINT TCP/UDP PORTS LIST
RAZORPOINT TCP/UDP PORTS LISTRAZORPOINT TCP/UDP PORTS LIST
RAZORPOINT TCP/UDP PORTS LIST
 
Where is my MQ message on z/OS?
Where is my MQ message on z/OS?Where is my MQ message on z/OS?
Where is my MQ message on z/OS?
 
Pf: the OpenBSD packet filter
Pf: the OpenBSD packet filterPf: the OpenBSD packet filter
Pf: the OpenBSD packet filter
 
Specification-Based Test Program Generation for ARM VMSAv8-64 MMUs
Specification-Based Test Program Generation for ARM VMSAv8-64 MMUsSpecification-Based Test Program Generation for ARM VMSAv8-64 MMUs
Specification-Based Test Program Generation for ARM VMSAv8-64 MMUs
 
IBM IMPACT 2014 - AMC-1883 - Where's My Message - Analyze IBM WebSphere MQ Re...
IBM IMPACT 2014 - AMC-1883 - Where's My Message - Analyze IBM WebSphere MQ Re...IBM IMPACT 2014 - AMC-1883 - Where's My Message - Analyze IBM WebSphere MQ Re...
IBM IMPACT 2014 - AMC-1883 - Where's My Message - Analyze IBM WebSphere MQ Re...
 
Transport Layer in Computer Networks (TCP / UDP / SCTP)
Transport Layer in Computer Networks (TCP / UDP / SCTP)Transport Layer in Computer Networks (TCP / UDP / SCTP)
Transport Layer in Computer Networks (TCP / UDP / SCTP)
 
Understanding DPDK
Understanding DPDKUnderstanding DPDK
Understanding DPDK
 
Ccnpswitch
CcnpswitchCcnpswitch
Ccnpswitch
 
STIC TCAP Training
STIC TCAP TrainingSTIC TCAP Training
STIC TCAP Training
 
Performance Metrics Overview
Performance Metrics OverviewPerformance Metrics Overview
Performance Metrics Overview
 
Polyraptor
PolyraptorPolyraptor
Polyraptor
 
LF_DPDK17_Accelerating P4-based Dataplane with DPDK
LF_DPDK17_Accelerating P4-based Dataplane with DPDKLF_DPDK17_Accelerating P4-based Dataplane with DPDK
LF_DPDK17_Accelerating P4-based Dataplane with DPDK
 
XPDS13: On Paravirualizing TCP - Congestion Control on Xen VMs - Luwei Cheng,...
XPDS13: On Paravirualizing TCP - Congestion Control on Xen VMs - Luwei Cheng,...XPDS13: On Paravirualizing TCP - Congestion Control on Xen VMs - Luwei Cheng,...
XPDS13: On Paravirualizing TCP - Congestion Control on Xen VMs - Luwei Cheng,...
 
L2 MAC LTE PROCEDURES revC
L2 MAC LTE PROCEDURES revCL2 MAC LTE PROCEDURES revC
L2 MAC LTE PROCEDURES revC
 
Callflows 121002232008-phpapp01
Callflows 121002232008-phpapp01Callflows 121002232008-phpapp01
Callflows 121002232008-phpapp01
 

Kürzlich hochgeladen

The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...anjaliyadav012327
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxShobhayan Kirtania
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 

Kürzlich hochgeladen (20)

The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptx
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 

Queue Manager both as sender and Receiver.docx

  • 1. Knowledge ispower.SoWise share it Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.1 Three DQMs whereQM1 Queue Manager acting as Receiver and Sender. C:WINDOWSsystem32>RUNMQSCQM2 5724-H72 (C) CopyrightIBMCorp. 1994, 2018. StartingMQSC for queue managerQM2. DEFINE QL(L2) 1 : DEFINEQL(L2) AMQ8006I: IBMMQ queue created. DEFINE CHANNEL(TO.QM2) CHLTYPE(RCVR) 2 : DEFINECHANNEL(TO.QM2) CHLTYPE(RCVR) AMQ8014I: IBMMQ channel created. DEFINE LSTR(QM2.LSTR) TRPTYPE(TCP) PORT(1415) 3 : DEFINELSTR(QM2.LSTR) TRPTYPE(TCP) PORT(1415) AMQ8626I: IBMMQ listenercreated. START LSTR(QM2.LSTR) 4 : STARTLSTR(QM2.LSTR) AMQ8021I: Requesttostart IBMMQ listeneraccepted. DIS LSSTATUS(*) ALL 5 : DISLSSTATUS(*) ALL AMQ8631I: Displaylistenerstatusdetails. LISTENER(QM2.LSTR) STATUS(RUNNING)
  • 2. Knowledge ispower.SoWise share it Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.2 PID(4164) STARTDA(2022-03-22) STARTTI(12.15.22) DESCR( ) TRPTYPE(TCP) CONTROL(MANUAL) IPADDR(*) PORT(1415) BACKLOG(100) END 6 : END 5 MQSC commandsread. C:WINDOWSsystem32>RUNMQSCQM1 5724-H72 (C) CopyrightIBMCorp. 1994, 2018. StartingMQSC for queue managerQM1. DEFINE QL(QM2.XQ) USAGE(XMITQ) 1 : DEFINEQL(QM2.XQ) USAGE(XMITQ) AMQ8006I: IBMMQ queue created. DEFINE QR(SENDQ) RNAME(L2) RQMNAME(QM2) XMITQ(QM2.XQ) 2 : DEFINEQR(SENDQ) RNAME(L2) RQMNAME(QM2) XMITQ(QM2.XQ) AMQ8006I: IBMMQ queue created. DEFINE CHANNEL(TO.QM2) CHLTYPE(SDR) XMITQ(QM2.XQ) CONNAME('LOCALHOST(1415)') 3 : DEFINECHANNEL(TO.QM2) CHLTYPE(SDR) XMITQ(QM2.XQ) CONNAME('LOCALHOST(1415)') AMQ8014I: IBMMQ channel created. START CHANNEL(TO.QM2) 4 : STARTCHANNEL(TO.QM2) AMQ8018I: Start IBMMQ channel accepted. DIS CHS(TO.QM2) 5 : DISCHS(TO.QM2) AMQ8417I: DisplayChannel Statusdetails. CHANNEL(TO.QM2) CHLTYPE(SDR) CONNAME(127.0.0.1(1415)) CURRENT
  • 3. Knowledge ispower.SoWise share it Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.3 RQMNAME(QM2) STATUS(RUNNING) SUBSTATE(MQGET) XMITQ(QM2.XQ) END 6 : END 5 MQSC commandsread. No commandshave a syntax error. All validMQSCcommandswere processed. C:WINDOWSsystem32>RUNMQSCQM1 5724-H72 (C) CopyrightIBMCorp. 1994, 2018. StartingMQSC for queue managerQM1. DEFINE QL(L2.R) 1 : DEFINEQL(L2.R) AMQ8006I: IBMMQ queue created. DEFINE CHANNEL(TO.QM1) CHLTYPE(RCVR) 2 : DEFINECHANNEL(TO.QM1) CHLTYPE(RCVR) AMQ8014I: IBMMQ channel created. DEFINE LSTR(QM1.LSTR) TRPTYPE(TCP) PORT(1414) 3 : DEFINELSTR(QM1.LSTR) TRPTYPE(TCP) PORT(1414) AMQ8626I: IBMMQ listenercreated. START LSTR(QM1.LSTR) 4 : STARTLSTR(QM1.LSTR) AMQ8021I: Requesttostart IBMMQ listeneraccepted. DIS LSSTATUS(QM1.LSTR) 5 : DISLSSTATUS(QM1.LSTR) AMQ8631I: Displaylistenerstatusdetails. LISTENER(QM1.LSTR) STATUS(RUNNING) PID(18420) STARTDA(2022-03-22) STARTTI(12.22.42) DESCR( )
  • 4. Knowledge ispower.SoWise share it Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.4 TRPTYPE(TCP) CONTROL(MANUAL) IPADDR(*) PORT(1414) BACKLOG(100) END 6 : END 5 MQSC commandsread. No commandshave a syntax error. All validMQSCcommandswere processed. C:WINDOWSsystem32>RUNMQSCQM3 5724-H72 (C) CopyrightIBMCorp. 1994, 2018. StartingMQSC for queue managerQM3. DEFINE QL(L2.R.XQ) USAGE(XMITQ) 1 : DEFINEQL(L2.R.XQ) USAGE(XMITQ) AMQ8006I: IBMMQ queue created. DEFINE QR(SENDQ1) RNAME(L2.R) RQMNAME(QM1) XMITQ(L2.R.XQ) 3 : DEFINEQR(SENDQ1) RNAME(L2.R) RQMNAME(QM1) XMITQ(L2.R.XQ) AMQ8006I: IBMMQ queue created. DEFINE CHANNEL(TO.QM1) CHLTYPE(SDR) XMITQ(L2.R.XQ) CONNAME('LOCALHOST(1414)') 4 : DEFINECHANNEL(TO.QM1) CHLTYPE(SDR) XMITQ(L2.R.XQ) CONNAME('LOCALHOST(1414)') AMQ8014I: IBMMQ channel created. START CHANNEL(TO.QM1) 5 : STARTCHANNEL(TO.QM1) AMQ8018I: Start IBMMQ channel accepted. DIS CHS(TO.QM1) 6 : DISCHS(TO.QM1) AMQ8417I: DisplayChannel Statusdetails.
  • 5. Knowledge ispower.SoWise share it Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.5 CHANNEL(TO.QM1) CHLTYPE(SDR) CONNAME(127.0.0.1(1414)) CURRENT RQMNAME(QM1) STATUS(RUNNING) SUBSTATE(MQGET) XMITQ(L2.R.XQ) END 7 : END 6 MQSC commandsread. One commandhas a syntax error. All validMQSCcommandswere processed. C:WINDOWSsystem32>AMQSPUTSENDQ1QM3 Sample AMQSPUT0 start target queue isSENDQ1 HI HELO Sample AMQSPUT0 end C:WINDOWSsystem32>AMQSPUTSENDQQM1 Sample AMQSPUT0 start target queue isSENDQ HASU SASSU Sample AMQSPUT0 end C:WINDOWSsystem32>AMQSGETL2 QM2 Sample AMQSGET0 start message <HASU> message <SASSU> ^C
  • 6. Knowledge ispower.SoWise share it Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.6 C:WINDOWSsystem32>AMQSGETL2.R QM1 Sample AMQSGET0 start message <HI> message <HELO> no more messages Sample AMQSGET0 end
  • 7. Knowledge ispower.SoWise share it Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.7
  • 8. Knowledge ispower.SoWise share it Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.8
  • 9. Knowledge ispower.SoWise share it Thispurelyforthe educationpurpose.Thisispartof opensource consumption. pg.9