Pre-Summer Sale 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: best70

AD0-E124 Adobe Experience Manager DevOps Engineer Expert Questions and Answers

Questions 4

A customer's development team is expanding and requires more development environments to be added to the AEM as a Cloud Service. There is no visible option via the Cloud Manager UI to add a new development environment under the current program.

What should the DevOps engineer do?

Options:

A.

Advise the customer to contact the Adobe account team.

B.

Add a new runmode via OSGi configuration.

C.

Add a new sandbox program via the Cloud Manager UI.

Buy Now
Questions 5

Three weeks ago, a P3 ticket was closed. The ticket contains all pertinent information about the issue and the corresponding resolution. Today, the exact issue is happening. The resolution is not working.

What should the DevOps engineer do?

Options:

A.

Reopen the same ticket.

B.

Open a new ticket.

C.

Escalate via the Actions section.

Buy Now
Questions 6

A DevOps engineer needs to store a separate API key per author and publish instance servers. The API key needs to be available to the service class com.my_company.core.APIService.

API Keys:

Author: KEY-001

Publish: KEY-002

Which option should the DevOps engineer use?

Options:

A.

/apps/ < my_company > /config.author/com.my_company.core.APIService.cfg.json { "key": "KEY-001" }

/apps/ < my_company > /config.publish/com.my_company.core.APIService.cfg.json { "key": "KEY-002" }

B.

/apps/ < my_company > /config.author.publish/com.my_company.core.APIService.cfg.json { "author": "KEY-001", "publish": "KEY-002" }

C.

/apps/system/config/global/com.my_company.core.APIService.cfg.json { "author": "KEY-001", "publish": "KEY-002" }

D.

/apps/ < my_company > /config/author/com.my_company.core.APIService.cfg.json { "key": "KEY-001" }

/apps/ < my_company > /config/publish/com.my_company.core.APIService.cfg.json { "key": "KEY-002" }

Buy Now
Questions 7

A customer of multiple Adobe Experience Cloud products, including Analytics, Tags, and AEM as a Cloud Service, recently onboarded a new team for their Technical Documentation site. This team is separate from the team that manages the Marketing site. The Marketing team was the first group to start using AEM, and they originally named their Admin Console group, "AEM Authors".

To enable independent permissions management for both teams, the Admin Console Administrator renames the "AEM Authors" group to "Marketing AEM Authors", and adds a separate group for the Technical Documentation authors.

The DevOps engineer receives a report from the Marketing team that a new team member is unable to access the Production environment after being added to the "Marketing AEM Authors" group in Admin Console. What should the DevOps engineer do?

Options:

A.

Using repoinit, migrate the user accounts from the "Marketing AEM Authors" group to the "AEM Authors" group.

B.

In AEM, rename the "AEM Authors" group to "Marketing AEM Authors" to match the Admin Console group name.

C.

Using repoinit, change the rep:externalid property for the "AEM Authors" group to "Marketing AEM Authors;ims".

D.

In AEM, make the "Marketing AEM Authors" group a member of the same group as the "AEM Authors" group.

Buy Now
Questions 8

A developer creates a new git branch for a feature that is being developed on AEM as a Cloud Service. The developer asks the DevOps engineer to establish an automated deployment to occur every 4 hours only.

What should the DevOps engineer do?

Options:

A.

Set up a cron job to call Adobe I/O CLI every 4 hours.

B.

Write a git commit hook to call Adobe I/O CLI every 4 hours.

C.

Set up a cron job to push a git commit every 4 hours.

D.

Schedule a pipeline in the Cloud Manager UI to run every 4 hours.

Buy Now
Questions 9

During the Non-Production pipeline, an issue occurs with a Security Rating of B. Based on the Review Results, all critical and mandatory tests passed.

What should the DevOps engineer do to proceed with the build?

Options:

A.

Switch on Override failed results and submit.

B.

Bypass testing for security and proceed to performance.

C.

Reject the deployment and restart it again.

D.

Reconfigure the pipeline to pull from another branch.

Buy Now
Questions 10

A DevOps engineer is called in to resolve a repeated performance issue. A problem is occurring with the Author performance due to a resource allocation. The AEM platform is set up using the cold-standby Author cluster with the same resources allocation as the primary.

What should the DevOps engineer do?

Options:

A.

Enable the cold-standby Author as primary.

B.

Run an online-compaction on the primary Author.

C.

Upscale the Author instance size.

Buy Now
Questions 11

A DevOps engineer performs a successful local deployment of the source code to the AEM SDK. Subsequently, a Cloud Manager deployment is initiated via Cloud Manager. The DevOps engineer encounters runtime errors in the pipeline logs.

The following information is discovered from an analysis of the pipeline logs:

• An exception occurred in the Sling Repository Initializer

• The SlingRepository service registration was aborted due to a RunTimeException

• Failed to set ACL (UnsupportedOperationException): This builder is read only

• AclLine ALLOW (paths=[/libs/dam/content], privileges=[jcr:read] ) at org.apache.sling.jcr.repoinit.impl.AclVisitor.setAcl

What is causing this issue?

Options:

A.

The repoinit script is trying to modify an immutable path.

B.

An OSGI configuration is missing to allow ACL changes during deployment.

C.

The repoinit script does not have a runtime exception handler and fails.

D.

The system user lacks permissions in the local AEM SDK.

Buy Now
Questions 12

A DevOps engineer is deploying a project in a Sandbox Program with an outdated environments version. The deployment fails at the build step on the Staging environment.

What should the DevOps engineer do?

Options:

A.

Delete the Sandbox Program via the Cloud Manager UI and recreate a Sandbox Program. Then rebuild the production pipeline.

B.

Recreate the Staging environment with an up-to-date AEM image while maintaining the Production environment intact.

C.

Update the Stage and Production environments via the Cloud Manager UI. Then rebuild the production pipeline.

Buy Now
Questions 13

New content is not visible on the website when accessing it via the dispatcher.

• Replication from author to publish works fine

• Dispatcher flush agent is present under /etc/replication/agents.author on the Publish instance, and enabled

• The checkbox for Dispatcher flush agent configuration is ticked for enabled, when reviewed on the author instance

• Rules in the dispatcher configuration are correct

Which problem with the dispatcher flush agent is causing this issue?

Options:

A.

It is not configured properly in the dispatcher configuration.

B.

It does not have enough permissions to receive the activation.

C.

It is configured properly but located in the wrong path.

D.

It is configured properly but uses the incorrect transport user.

Buy Now
Questions 14

The development team asks the DevOps engineer for help to set up Java remote debugging on a local AEM instance to debug an AEM application. The DevOps engineer needs to activate remote debugging on port 8000.

Which JVM parameter should the DevOps engineer add to perform this task?

Options:

A.

-Dcom.sun.management.jmxremote.port=8000 -Djava.rmi.server.hostname=localhost

B.

-agentlib:jdwp=transport=dt_socket,address=8000,server=y,suspend=n

C.

-Djava.awt.headless=true -javaagent:local.jar=8000

D.

-Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n

Buy Now
Questions 15

A DevOps engineer is managing an AEM as a Cloud Service Sites environment for a customer. After development tested the Maven build locally, a new development pipeline is executed. The development pipeline fails in the build steps with the following errors:

[Queue Processor for Subscriber agent forwardPublisherSubscriber] org.apache.jackrabbit.vault.fs.io.Importer Error while processing...

Caused by: org.apache.sling.api.resource.PersistenceException: Unable to commit changes to session.

Caused by: javax.jcr.AccessDeniedException: OakAccess0000: Access denied

Message: Error trying to extract package at path /etc/packages/com.myapp/myapp-base.content.zip.

What should the DevOps engineer do?

Options:

A.

Add ACLs for the sling-distribution-importer user via User Admin.

B.

Add ACLs for the sling-distribution-importer user via the repoinit script.

C.

Add ACLs for the sling-distribution-importer user via curl command.

D.

Restart the sling-distribution-importer bundle via the OSGi Web Console.

Buy Now
Exam Code: AD0-E124
Exam Name: Adobe Experience Manager DevOps Engineer Expert
Last Update: Apr 19, 2026
Questions: 50

PDF + Testing Engine

$134.99

Testing Engine

$99.99

PDF (Q&A)

$84.99