HomeAEM Fundamentals › OSGi web console

OSGi web console

Purpose: Navigate /system/console for bundles, configuration, services, and logs — your backend dashboard.

Who this page is for

AudienceWhy it matters to you
Backend engineersDaily tool
All engineersFirst stop for "is my code deployed and running?"

The consoles that matter

URLWhat it answers
/system/console/bundlesIs my bundle deployed? Active? Why not?
/system/console/configMgrWhat is this service's live configuration?
/system/console/componentsWhy is my DS component not activating?
/system/console/servicesWho provides/consumes an interface?
/system/console/status-slinglogsWhere are the logs?
/system/console/depfinderWhich bundle exports this package?
/system/console/jmxRuntime MBeans (repository stats, workflows)

Bundle states decoded

StateMeaningTypical cause when stuck
ActiveRunning
InstalledCannot resolve dependenciesMissing package import — check "Imported Packages" for red entries
ResolvedResolvable but not startedStart it, or check start level
FragmentAttaches to a host bundleNormal for fragments

The classic diagnosis flow for "my code isn't running": bundles console → your bundle Installed instead of Active → expand → find the unresolvable import → fix the dependency embed/version. See Bundle won't start.

Config management notes

Quick navigation