Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

AEM SDK is not running locally

Avatar

Level 2

I downloaded  latest sdk for local setup 

"AEM SDK v2024.8.17465.20240813T175259Z-240700". 

While running using the java- jar command, it is not coming up, i don't see any errors in stdout.log or stderr.log.

Here is the screen shot of my java version and command. 

 

java -jar aem-author-p4502.jar -p 4502 -gui

 

/////

java version "11.0.22" 2024-01-16 LTS
Java(TM) SE Runtime Environment 18.9 (build 11.0.22+9-LTS-219)
Java HotSpot(TM) 64-Bit Server VM 18.9 (build 11.0.22+9-LTS-219, mixed mode)

 

1 Accepted Solution

Avatar

Correct answer by
Level 2

Thank you @Rite18 I used the similar command to fix it.

View solution in original post

4 Replies

Avatar

Community Advisor

Hi, 

 

What output do you get when you run the Java command? Are you checking the Java version from the same terminal session where you are running the command? Please try this: java -jar aem-publish-p4503.jar -verbose Then check for any issues and post back.

 

Hope this helps



Esteban Bustamante

Avatar

Level 2

Thank you, I was able to figure out it is memory issue, after couple of tries it started finally.

Avatar

Level 7

could be memory try below 

 

java -jar -Xmx1024m aem-author-p4502.jar -p 4502 -gui

Avatar

Correct answer by
Level 2

Thank you @Rite18 I used the similar command to fix it.