Ashish
Ashish

Reputation: 1121

Servicemix Bundle Installation directory

I have a bundle up and running in Servicemix for a long time. I cant even use 'history' to see where this bundle got installed from.

Is there any way I could find where this bundle originally got installed from?

As a note: this bundle does exist in my company's central repository but I dont see the exact version there. seems like this bundle got installed using File component something like install file:jar_location/jar_name.

Upvotes: 0

Views: 496

Answers (1)

Gergely Kovács
Gergely Kovács

Reputation: 599

If it's just a standalone bundle, then try

    la -l | grep <bundle_id>

This will show the exact installation link. (with protocol as well) Also it might be just dropped into ${SMX_HOME}/deploy. If you have a simple jar file it can be dropped and got fragmented automatically.

Also I'd check if it's coming from a feature (list the attached feature urls):

    features:listurl

It's useful to know if you'll have to updat it. See

    features:install / features:uninstall

Hope that helps, Gergely

Upvotes: 1

Related Questions