Trying to run start.bat to set up debugger in Eclipse, but get the Error:Could not find or load main class Website\author\crx-quickstart\bin\ when I try to run in. Any ideas?
To use remote debugging, you must start AEM with this JVM parameter: -agentlib:jdwp=transport=dt_socket,address=8000,server=y,suspend=n
You can add the parameter by doing any of the following:
Add it to yourcrx-quickstart/bin/startscriptCQ_JVM_OPTSenvironment variable (so your server always starts in debug mode).
Include it as a parameter when starting AEM withjava -jardirectly. For example,java -Xmx512m -agentlib:jdwp=transport=dt_socket,address=8000,server=y,suspend=n -jar cq-author-4502.jar
Notes
If necessary, you can change the port defined under "...,address=8000,..." from 8000 to something that works better in your environment.
If you notice that it isn't working, avoid forking the java process by specifying the -nofork command line option.
The start script is located under crx-quickstart/bin