Expandir la barra de logros de la comunidad.

Submissions are now open for the 2026 Adobe Experience Maker Awards.
RESUELTAS

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 solución aceptada

Avatar

Respuesta correcta de
Level 2

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

Ver la solución en mensaje original publicado

4 Respuestas

Avatar

Community Advisor and Adobe Champion

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

Community Advisor

could be memory try below 

 

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

Avatar

Respuesta correcta de
Level 2

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