views:

71

answers:

1

"Error executing command: URL [mvn:org.apache.activemq/activemq-web-console/5.4.0/war] could not be resolved."

is thrown up when i do features:install activemq-web-console i am using fuse 4.3

A: 

removed the old Url for activemq from features:removeUrl and added the new one mvn:org.apache.activemq/activemq-karaf/5.4.0/xml/features

and re-installed activemq features . if u are unable to install mvn url's then,u must add the fuse repo's to your maven settings xml. apart from this there is a well known bug

Add the following lines to etc/system.properties 




   webconsole.type=properties
   webconsole.jms.url=tcp://localhost:61616
   webconsole.jmx.url=service:jmx:rmi:///jndi/rmi://localhost:1099/karaf-root
   webconsole.jmx.user=smx 
   webconsole.jmx.password=smx

this would make ur console work

sanre6