As of version 4.3, the admin information URL for on-premise EUM Servers (http://eum-host:port/eumaggregator/info
) is disabled by default for security reasons.
Users who wish to access this information can start the EUM Server with dev mode by adding the -Deumcloud.mode=DEV
JVM parameter to the EUM processor in the JAVA_OPTS startup script.
Example:
Add the following to the bin/eum-processor(.bat for Windows)
DEFAULT_JVM_OPTS=“\
\“-server\” \
\“-XX:+UseConcMarkSweepGC\” \
\“-XX:CMSInitiatingOccupancyFraction=50\” \
\“-XX:+HeapDumpOnOutOfMemoryError\” \
\“-XX:NewRatio=1\” \
\“-Xms1024m\” \“-Xmx4096m\” \
\“-DEUM_COMPONENT=processor\” \
\“-Deumcloud.mode=DEV\” \
\“-Dlogback.configurationFile=bin/logback.xml\” \
\“-Dcom.mchange.v2.c3p0.cfg.xml=bin/c3p0.xml\“
Then restart the EUM Server in order to access the admin information URL.