Event ID - 6177

Event Id6177
SourceMQSeries
DescriptionAn internal MQSeries error has occurred.
An error has been detected, and the MQSeries error recording routine has been called.

Details of the error have been stored at
E:\Data\MQSeries\errors\AMQ02212.0.FDC. A synopsis is given in the data
section below. Use the standard facilities supplied with your system to record the problem identifier, and to save the generated output files. Contact your IBM support center. Do not discard these files until the problem has been resolved.
Event Information
This message from newsgroup may help you:
--------------------------------------------------------------------------------
There are two extra pieces of information that would be helpful to try and work out what is going on here. Firstly, each JMSException that gets caught will have an associated linked exception that will explain the underlying MQ cause for this error. This can usually give more clues to what is happening here. To retrieve this do something similar to:

catch (JMSException je) {
System.err.println("Caught a JMSException: " + je);
je.printStackTrace();

Exception le = je.getLinkedException();
if (le != null) {
System.err.println("Linked exception was: " + le);
le.printStackTrace();
}

}

The other thing that may help is the FDC file. The error logs below indicate the a file called C:\Program Files\MQSeries\errors\AMQ03564.0.FDC was created because of an error and if you post the top of that file along with the linked exception stack trace that will give a clearer picture of what is going on.

You seem to be doing a connection to the queue manager through the client route and so you should make sure that all your channels are started and are running. If you have had problems with setup previously it is also worth resetting the channels as that can also cause problems.
--------------------------------------------------------------------------------.
Reference Links

Catch threats immediately

We work side-by-side with you to rapidly detect cyberthreats
and thwart attacks before they cause damage.

See what we caught

Did this information help you to resolve the problem?

Yes: My problem was resolved.
No: The information was not helpful / Partially helpful.