Page tree

Versions Compared

Key

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

...

Code Block
languagebash
wget http://www.bonsaiframework.com/downloads/0fs-java/jre-8u74-linux-i586.tar.gz # Change link to an alias once I have time
tar -xvpf jre-8u74-linux-i586.tar.gz
rm jre-8u74-linux-i586.tar.gz

# Add Java to class path temporarily
export PATH=$PATH:/opt/aem/author/java/bin


# If you have other installations of Java installed you might want to reverse,
export PATH=/opt/aem/author/java/bin:$PATH

# Verify,
which java
/opt/aem/author/java/bin/java

# Generate the initial files ... not just starting for first time will do this too, but this allows us to see everything and make any modifications before first run,
java -jar aem-author-4502.jar -unpack

# while in LXD Host,
sudo iptables -t nat -A PREROUTING -p tcp -i ens33 --dport 4502 -j DNAT --to-destination 10.71.210.30:4502

Do some customization for Enterprise,

Here are somethings we should look at,

  1. Change Default JAVA_HOME and it seems documented as a parameter in older link.
  2. Change Log Locatiion

If using Linux Containers create port mapping to allow 4502 in (note make sure to use direct IP Address of host to hit... not sure why it only works with IP right now),

Code Block
languagebash
# while in LXD Host,
sudo iptables -t nat -A PREROUTING -p tcp -i ens33 --dport 4502 -j DNAT --to-destination 10.71.210.30:4502

References

Most important - https://docs.adobe.com/docs/en/aem/6-2/deploy/custom-standalone-install.html