Minor note.

java -cp lib/jetty-6.1.9.jar:lib/jetty-util-6.1.9.jar
org.mortbay.jetty.security.Password admin test 

The : needs to change to a ; in order for java to search both JAR archives. 
Otherwise you'll get a:

java.lang.ClassNotFoundException: org.mortbay.jetty.security.Password

Correct syntax is:

java -cp lib/jetty-6.1.9.jar;lib/jetty-util-6.1.9.jar
org.mortbay.jetty.security.Password admin test 
-- 
View this message in context: 
http://www.nabble.com/Securing-the-web-console-impossible--tp16765525p24851300.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Reply via email to