Hi Team,
Background
I have pulled Ignition8 docker image and gateway application is running on port 9088.
I am able to access Ignition application on localhost:9088
Docker image : Docker
Now I want to setup Remote debugging profile to test a Driver module(OPC XML DA in my case).
Followed steps from here Debugging in IntelliJ - Ignition SDK Programmer's Guide - Ignition Documentation.
ignition.conf
wrapper.java.additional.2=-Xdebug
wrapper.java.additional.3=-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=*:8000
IntelliJ Remote debug command line arguments
-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:8000
Host : localhost
Port : 8000
Issue
When tried run in debug mode getting below error in IntelliJ
Error running 'Remote debug': Unable to open debugger port (localhost:8000): java.net.ConnectException "Connection ref
I'm missing some context here.
Can someone help me to resolve this issue and share any doc with all detailed steps to setup Remote debug in IntelliJ.