DJD
DJD

Reputation: 143

MuleSoft Debugger not working

I am trying to debug in my anypoint studio and debugger does not seems to be working. I performed following steps PROJECT_NAME --> Right Click --> Debug As --> Mule Application.

Application has successfully deployed however debugging is not working. I see a message as "Mule Debugger is not working. Launch your Mule application in debug."

Also confirmed my application has successfully deployed, once deployed I sent a request and I dont see anything in Mule Debugger.

Any help will be greatly appreciated.

I even gave a try by changing port numbers also by killing everything that might be running in port 6666.

Upvotes: 2

Views: 7097

Answers (9)

eyyj
eyyj

Reputation: 11

Try changing your Debugger Port. By default it should be 6666. I've changed mine to 1024 and it worked:

Upvotes: 1

Srinivas
Srinivas

Reputation: 92

You can try couple of things like changing port from 9999 to 6666 and vice versa. If it still doesn't work restart Anypoint Studio.

Upvotes: 0

nktsamba
nktsamba

Reputation: 644

I had the same problem, but slightly different. My Mule app was not deploying in Debug mode, it was taking forever.

I tried changing the port number, and it didn't work.

I eventually solved the issue by reinstalling Anypoint and configuring it again.

Upvotes: 0

Alberici
Alberici

Reputation: 367

Create a new workspace and try again.

To know if the issue is always happening or if it is something in particular in your ws

Upvotes: 0

Sakthi M
Sakthi M

Reputation: 11

try to change the ports as it might be already used,If that also is not working then Re Install of Anypoint Studio which would solve this problem.

Could you try giving higher port number like 9999 or more if you are running on Windows OS.

Upvotes: 0

CountD
CountD

Reputation: 669

You may have a 'zombie' Mule process running in the background occupying the debugger port. Try running the following command to list the processes on that port:

lsof -i:6666

Upvotes: 0

santhosh
santhosh

Reputation: 1

  1. Make sure you had a break point in any component of the flow and try again.
  2. Having a break point looks like the image below

enter image description here

Upvotes: 0

Swati Vatyani
Swati Vatyani

Reputation: 47

Please see the link for same issue here- https://forums.mulesoft.com/questions/1678/mule_debugger_not_working.html

Upvotes: 0

vijay dhanakodi
vijay dhanakodi

Reputation: 175

Try closing Anypoint Studio and clean all metadata. Start debugging the flow again.

Upvotes: 0

Related Questions