Hi!
In your start-camunda.sh there’s next command
export CATALINA_HOME="$(dirname “$0”)/server/apache-tomcat-8.0.47"
but it doesn’t work.
I corrected to
export CATALINA_HOME="$(dirname ‘$0’)/server/apache-tomcat-8.0.47" , i.e.
used single quotation marks(apostrophe) instead of double and it worked OK.