Find Out AEM Information

Evgeniy Fitsner Software Engineer
1 min read
Find Out AEM Information

Introduction

When working with AEM, you often need to quickly check system information such as the installed version, active run modes, or bundle status. This post collects the most useful URLs for accessing this information.

Installed AEM Version

1
http://localhost:4502/system/console/status-productinfo

Displays the AEM product version, service pack level, and hotfix information.

AEM Run Mode

  1. Navigate to the OSGi bundles console:
1
http://localhost:4502/system/console/bundles
  1. Go to Status then Sling Settings in the navigation menu.

This page shows the active run modes (for example, author, publish, localdev, nosamplecontent), which determine how AEM loads configurations and content.

Additional Useful URLs

Information URL
OSGi Configuration Manager /system/console/configMgr
Bundle Status /system/console/bundles
System Console Home /system/console
CRXDE Lite /crx/de
Package Manager /crx/packmgr
Query Debugger /libs/cq/search/content/querydebug.html
JMX Console /system/console/jmx

Contents