Create Escenic Users

All the Content Engine components should run under the same user, and this user should have the same UID on all hosts. So create a user (preferably called escenic) on each host machine as follows:

# adduser escenic

and make sure they all have the same UID. If you are installing on clean machines, and escenic is the first user you create, then they will all have the same UID by default.

On your assembly-host and engine-host(s), make sure that Java is in the path of the escenic users:

# su - escenic
$ echo 'export JAVA_HOME=/usr/lib/jvm/java-6-sun' >> .bashrc
$ echo 'export PATH=$JAVA_HOME/bin:$PATH' >> .bashrc
$ source ~/.bashrc