Re: How to Use Nifi Remote Debugger?

2016-09-22 Thread Oleg Zhurakousky
Also, keep in mind that while remote debugging helps with something that may already be running in production, for pure development there is a simpler way to run NiFi in debug mode without using remote debugger. Here is more information - https://cwiki.apache.org/confluence/display/NIFI/Contribu

Re: How to Use Nifi Remote Debugger?

2016-09-22 Thread Russell Bateman
Good for you, Keren! On 09/22/2016 09:44 AM, Tseytlin, Keren wrote: > Hey All, > > Thanks so much for the help! The remote debugger ended up working. Because > my Nifi was on AWS, I needed to do some port tunneling in order to open up > the communication. So I had run a line similar to this: > > s

Re: How to Use Nifi Remote Debugger?

2016-09-22 Thread Tseytlin, Keren
Hey All, Thanks so much for the help! The remote debugger ended up working. Because my Nifi was on AWS, I needed to do some port tunneling in order to open up the communication. So I had run a line similar to this: ssh -i <> -N -L 5500:<>:5500 ec2-user@<> I documented everything here if anyone

Re: How to Use Nifi Remote Debugger?

2016-09-21 Thread Joe Witt
Try telnet 5500 If that cannot connect then it is almost certainly a firewall issue. On Wed, Sep 21, 2016 at 4:28 PM, Tseytlin, Keren wrote: > Thanks for the answers Russell and Manish. > > It appears that it was an issue with the port 8000, when I moved it to > something random then Nifi wou

Re: How to Use Nifi Remote Debugger?

2016-09-21 Thread Tseytlin, Keren
Thanks for the answers Russell and Manish. It appears that it was an issue with the port 8000, when I moved it to something random then Nifi would start up. I¹m connecting to an EC2 that I¹ve set up because I need to test some AWS communication. Now that I have Nifi running, I¹m trying to connect

Re: How to Use Nifi Remote Debugger?

2016-09-21 Thread Russell Bateman
Here's how I've been doing it for the last 6 months. I use IntelliJ, but I'm also an Eclipse guy. http://www.javahotchocolate.com/notes/nifi.html#20160323 Hope this helps. Russ On 09/21/2016 01:39 PM, Tseytlin, Keren wrote: Hi All, I want to set up the remote debugger with Nifi so that I ca

Re: How to Use Nifi Remote Debugger?

2016-09-21 Thread Manish Gupta
It works fine for me from Eclipse. I have also commented the following line and connected using remote debugger in Eclipse. # Enable Remote Debugging *java.arg.debug=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000* Never faced any error on NiFi (0.7) side because of this. Howev

How to Use Nifi Remote Debugger?

2016-09-21 Thread Tseytlin, Keren
Hi All, I want to set up the remote debugger with Nifi so that I can step through the code with IntelliJ. I noticed that last year someone else asked about how to set up remote debugging here -> https://mail-archives.apache.org/mod_mbox/nifi-dev/201508.mbox/%3c7641519c73cd4ad3832b80461b8ce...@m