Re: Karaf Service Wrapper License Issue

2015-06-30 Thread Jean-Baptiste Onofré
Hi Jochen, On one of my branch, I have the replacement of JSW by commons-daemon. It doesn't bring exactly the same features but very close. Regards JB On 06/30/2015 08:22 AM, jochenw wrote: Hello, as far as I can see from Karaf 3.0.3, it still uses the Service Wrapper now maintained by Tanuki

Re: bundle:watch * as default setting

2015-06-30 Thread Jean-Baptiste Onofré
Hi Jochen, 1. if you enable bundle:watch the status will be store in the data folder. So even if you restart, if you don't remove the data folder, the bundle:watch will be enabled. 2. it's the case by default: bundle:watch * will watch all SNAPSHOT bundles, even the new installed (it's a thr

Karaf child instances

2015-06-30 Thread Ryan Moquin
I had a question about Karaf child instances for Karaf 3.0.x. If you create and start a child instance from a root Karaf instance and the machine it's running on gets rebooted, or the child instance crashes, what is the recommended way to have that child instance automatically start when the karaf

Re: Karaf child instances

2015-06-30 Thread Jean-Baptiste Onofré
Hi Ryan, a child instance is isolated from the root instance: so even if you stop the root instance, the child instance is still alive. You can control the instance using bin/instance. If you have an issue, please let me know but it should work. Regards JB On 06/30/2015 04:55 PM, Ryan Moqui

Re: Cannot Deploy Spring Web Application

2015-06-30 Thread Charlie Mordant
Hi, The strange thing is that 'org.springframework.web.servlet' doesn't appear in your generated manifest (even if it's present on your bnd configuration). You should investigate on that (may be spaces or wrong character anywhere) Regards 2015-05-08 7:01 GMT+02:00 noushadali : > Thanks. I did i

Re: How to collect thread dump & heap dump from karaf

2015-06-30 Thread Srikanth Hugar
dev:dump-create is not working, do we need to install any feature or bundles to make it work? I am using karaf 3.0.0. Srikanth Hugar www.gharki.com On Tue, Jun 30, 2015 at 10:12 AM, Jean-Baptiste Onofré wrote: > Hi Srikanth > > dev:dump-create > > Regards > JB > > > On 06/30/2015 12:50 AM, S

Re: How to collect thread dump & heap dump from karaf

2015-06-30 Thread Srikanth Hugar
Error i get is : Error executing command: Unable to create dump destination Srikanth Hugar www.gharki.com On Wed, Jul 1, 2015 at 5:20 AM, Srikanth Hugar wrote: > dev:dump-create is not working, do we need to install any feature or > bundles to make it work? > > I am using karaf 3.0.0. > > S

Re: How to collect thread dump & heap dump from karaf

2015-06-30 Thread Srikanth Hugar
It worked. Some permission issues. But i cannot find heap dump data. Only thread dump is collected. How do i get the heap dump? Srikanth Hugar www.gharki.com On Wed, Jul 1, 2015 at 5:22 AM, Srikanth Hugar wrote: > Error i get is : > > Error executing command: Unable to create dump destinat

Re: How to collect thread dump & heap dump from karaf

2015-06-30 Thread Jean-Baptiste Onofré
Heap dump has been added later after 3.0.0 (3.0.4 will have it). Use jmap to create the heap dump: jmap -dump:file=heapdump pid where pid is the Karaf PID. Regards JB On 07/01/2015 02:05 AM, Srikanth Hugar wrote: It worked. Some permission issues. But i cannot find heap dump data. Only thr