I am trying to set environment variable CATALINA_HOME for tomcat server. I used the command
CATALINA_HOME=/usr/local/apache-tomcat-8.0.22
JAVA_HOME=/usr/lib/jvm/java-7-openjdk-i386
and
export PATH=$PATH:`$CATALINA_HOME`/bin:$JAVA_HOME
After executing all these commands when I type startup.sh
on the terminal my tomcat server started. After reboot when I type startup.sh
it is showing
startup.sh: command not found
Also when I tried to check value of environment variable by
echo $CATALINA_HOME
or echo $JAVA_HOME
it is showing a blank line. What should I do now? Thanks.
$CATALINA_HOME
variable – steeldriver Jun 02 '15 at 15:27