Issues with Attachments: week of 2014-12-22

2014-12-22 Thread jb
KARAF - Monday, December 22, 2014 12 Issues with Attachments (sorted oldest to newest) [KARAF-222] Provide karaf:run, karaf:deploy, karaf:client Maven goals (2010-09-25 - New Feature - james strachan) https://issues.apache.org/jira/browse/KARAF-222 [KARAF-639]

Need help realted to Karaf on unix

2014-12-22 Thread Mane-EXTERNAL Prithivraj
Hi , I am running Karaf server on Unix . I have started the Karaf server in non console mode by executing ./karaf server command . Now I want to deploy my bundle in next step . Since server is not fully stared yet , my command for deploying bundle getting failed . Is there any way to

Re: Telling whether startup is really complete

2014-12-22 Thread Jean-Baptiste Onofré
Hi, yes, in etc/custom.properties, you can add: karaf.delay.console=true karaf.startup.message=Please wait while Apache Karaf is starting... It will delay the console display waiting features installed. Regards JB On 12/22/2014 12:21 PM, Prithviraj wrote: I am running Karaf server on Unix .

Re: Need help realted to Karaf on unix

2014-12-22 Thread Jean-Baptiste Onofré
See my other message in the other thread ;) Regards JB On 12/22/2014 12:21 PM, Mane-EXTERNAL Prithivraj wrote: Hi , I am running Karaf server on Unix . I have started the Karaf server in non console mode by executing ./karaf server command . Now I want to deploy my bundle in next

Re: Need help realted to Karaf on unix

2014-12-22 Thread Prithviraj
sorry for asking again, can you please point me the link for mentioned thread ? thanks in advance for your help -- View this message in context: http://karaf.922171.n3.nabble.com/Need-help-realted-to-Karaf-on-unix-tp4037355p4037358.html Sent from the Karaf - Dev mailing list archive at

Re: Telling whether startup is really complete

2014-12-22 Thread Prithviraj
Hi JB, I tried this , it displayed the message as mentioned in custom.properties file . Actually it is not solving my problem . My problem statement is like below 1) I have wrote start_karaf.sh file which will invoke start script from {$KARAF_HOME}/bin location . Which internally start the

Re: Telling whether startup is really complete

2014-12-22 Thread Jean-Baptiste Onofré
Hi 1/ the bin/start script does exactly as your script 2/ use bin/client script to execute bundle:list -t 0 and check (with a regex) that all bundles are in started state. Regards JB Original message From: Prithviraj meetra...@gmail.com Date:22/12/2014 14:14 (GMT+01:00)

Re: Telling whether startup is really complete

2014-12-22 Thread Jean-Baptiste Onofré
You can create a script (in Karaf) that you use with bin/client (with shell:source for instance). For instance, something like: bundles = bundle:list -t 0; each ($bundles) { if { $state equals Active } echo $state } or so. Regards JB On 12/22/2014 03:38 PM, Prithviraj wrote: Hi JB , I

Alternative backend for Decanter and some Shell stuff

2014-12-22 Thread Achim Nierbeck
Hi, I worked on a showcase to embed a Apache Cassandra DB inside Apache Karaf [1]. This could be used for either prototyping with Cassandra or as an alternative backend for the Decanter project. Additionally I played with some shell commands for easy debugging purposes, for details take a look

Re: Telling whether startup is really complete

2014-12-22 Thread Christian Schneider
Karaf publishes an OSGi service org.apache.karaf.features.BootFinished when bundles are started. Not sure if you can easily work with this on the shell. Maybe this is also something we can enhance in the ssh based shell. We could delay the ssh shell in the same way as the local console. That