I have tries to follow the direction on the activemq site for downloading and running activemq: http://activemq.apache.org/getting-started.html#GettingStarted-StartingActiveMQ
I have downloaded the tar.gz file from here: http://www.apache.org/dyn/closer.cgi?path=%2Factivemq%2Fapache-activemq%2F5.6.0%2Fapache-activemq-5.6.0-bin.tar.gz
I have extracted it and try to run bin\activemq from the extracted dir.
However for some reason the activemq does not start and I am keep getting the following error:
yosi@yosi:~/Downloads/apache-activemq-5.6.0$ ./bin/activemq start INFO: Loading '/etc/default/activemq' INFO: Using java '/usr/lib/jvm/jdk1.7.0_07/bin/java' INFO: Starting - inspect logfiles specified in logging.properties and log4j.properties to get details ./bin/activemq: 396: ./bin/activemq: /usr/lib/jvm/jdk1.7.0_07/bin/java -Xms1G -Xmx1G -Djava.util.logging.config.file=logging.properties -Dcom.sun.management.jmxremote -Djava.io.tmpdir="/home/yosi/Downloads/apache-activemq-5.6.0/tmp" -Dactivemq.classpath="/home/yosi/Downloads/apache-activemq-5.6.0/conf;" -Dactivemq.home="/home/yosi/Downloads/apache-activemq-5.6.0" -Dactivemq.base="/home/yosi/Downloads/apache-activemq-5.6.0" -Dactivemq.conf="/home/yosi/Downloads/apache-activemq-5.6.0/conf" -Dactivemq.data="/home/yosi/Downloads/apache-activemq-5.6.0/data" -jar "/home/yosi/Downloads/apache-activemq-5.6.0/bin/run.jar" start >/dev/null 2>&1 & RET="$?"; APID="$!"; echo $APID > /home/yosi/Downloads/apache-activemq-5.6.0/data/activemq-yosi.pid; echo "INFO: pidfile created : '/home/yosi/Downloads/apache-activemq-5.6.0/data/activemq-yosi.pid' (pid '$APID')";exit $RET: not found
Does anyone have any idea what is going on here? is it a problem in the activemq script?
Yosi