Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You should see "Adobe Experience Mgr" but it says "No Serial Number Required". This is not true. Instead look for "AEM Standard" with Production Version "5.6" and you will see a serial number under the "Serial" column. Copy and paste into a standard text file for later.

AEM

...

AEM package comes in is built using many of the same concepts endorsed in the Bonsai Framework, hence the entire system in initial download is a single file in two flavours,

  • cq-quickstart-6.2.0.jar - executable to run as a Java process .which includes Jetty as an embedded container
  • cq-quickstart-6.2.0.war - install in a container like Tomcat

Enable license by entering at startup or in license.properties file (preferred to automation).

By default the package starts up running both the author and publish components as one service. Enterprise configurations will want to segregate and this occurs with a file rename,

Code Block
languagebash
cq-<instance-type>-p<port-number>.jar 

Change,

Code Block
languagebash
mv cq-quickstart-6.2.0.jar aem-author-4502.jar
mv jre.... java


/opt/aem/author/java/bin/java -XX:MaxPermSize=512M -Xms1024m -jar /opt/aem/author/aem-author-4502.jar -unpack
Java HotSpot(TM) Server VM warning: ignoring option MaxPermSize=512M; support was removed in 8.0
Loading quickstart properties: default
Loading quickstart properties: instance
Setting properties from filename '/opt/aem/author/aem-author-4502.jar'
Option '-quickstart.server.port' set to '4502' from filename aem-author-4502.jar
Verbose mode - stdout/err not redirected to files, and stdin not closedResourceProvider paths=[/gui, /gui/default]
quickstart.build=0.0.0.0_0_0_6_2_.20160414
quickstart.properties not found, initial install
UpgradeUtil.handleInstallAndUpgrade has mode INSTALL
Saving build number in quickstart.properties
Upgrade: no files to restore from pre-upgrade backup
33 files extracted from jar file
Running chmod +x /opt/aem/author/crx-quickstart/bin/start
Running chmod +x /opt/aem/author/crx-quickstart/bin/stop
Running chmod +x /opt/aem/author/crx-quickstart/bin/status
Running chmod +x /opt/aem/author/crx-quickstart/bin/quickstart
Running chmod +x /opt/aem/author/crx-quickstart/opt/helpers/crx2oak.sh
Not starting the Quickstart server as the -unpack option is set
Quickstart files unpacked, server startup scripts can be found under /opt/aem/author/crx-quickstart


Modify temporary directory,

Code Block
CQ_JVM_OPTS # may modify in serverctl or start script

...

Next Steps

In a large organization you will also need to consider the following,

...