Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

Run modes

Avatar

Level 5

What are the advantages of using run modes? and why we need to have run modes and why we use run modes?

8 Replies

Avatar

Level 3

Runmodes are helpful if you have different configuration for different environment. Suppose you have a DEV, UAT and PROD environment and you site has a database connection. It is obvious that you will have different database configuration for each environment. So, you commit the separate configuration for each environment in specific run modes. For example, for the dev environment, you commit the configuration in config.author.dev, config.publish.dev folder. In the same fashion, you commit the config for UAT and PROD environment so that AEM pick the configuration from the folder in which run mode aem is running.

Here are some links for better understanding

Apache Sling :: Sling Settings and Run Modes (org.apache.sling.settings)

Run Modes 

Avatar

Level 4

In your project you have OSGi services and you different environment (eg LOCAL/DEV/QA/STAGE/UAT/PROD) for AEM Author and Publish. Now suppose you want different configuration values for each environment then in that case you can create run mode like

  • config.local
  • config.DEV
  • config.QA
  • config.STAGE
  • config.UAT
  • config.PROD

and put xml file under these folder.

Avatar

Level 5

how many types of run modes are there? and how to implement it?

Avatar

Level 10

Hi Shivani,

There are two types of run modes.

1. Primary Run mode

2. Secondary or Customized Run mode.

Primary Run mode:

Primary run modes used at the time of installation and are fixed for the entire lifetime of that installation. There are two primary run modes provided from adobe author and publish.

Here we cannot change primary run mode after installation, as crx-quickstart folder is created after first installation according to run mode.

Secondary Run mode:

Secondary or Customized run modes are applied on each startup and can be changed with a restart of AEM instance. These are custom run modes defined for specific environment like development (config.author.dev), Testing(config.author.qa) or production(config.author.prod) as said by Rajeev and codingStar.

How to Implement: See this article and you will known clearly.

http://www.aemcq5tutorials.com/tutorials/set-up-run-modes-in-aem/

Hope this helps!!

Thanks,

Ratna Kumar.

Avatar

Level 5

what is create run modes about in this above link is it third method or it is another method to set up run modes in secondary run modes?

Avatar

Level 5

what are the difference in settings run modes for each environmenment dev,qa and prod?

Avatar

Level 5

How to create run modes for QA environment?

How to create run modes for Prod environment?