Re: Karaf web site revamp

2012-08-27 Thread Andreas Pieber
I second Achim on this. Every idea from any Artist in the community is VERY welcomed! In addition I also second him on the "I'm certainly not one of them" part ;-) But still I would like to look at various approaches. All of them will be highly valued! Independently @JB @JB's ideas: While I optic

Re: Access denied to git hub repo of Karaf

2012-08-27 Thread Andreas Pieber
The Karaf repos themselves are no git repos by now. Every git repo you find with Karaf is only an mirror of the Karaf SVN Repository. Only way is to use git-svn together with the original SVN repo and one of the mirrors. That's also how most of us are doing it right now (AFAIK). Kind regards, Andr

Re: Access denied to git hub repo of Karaf

2012-08-27 Thread David Jencks
isn't the usual gihub workflow to have your own copy of the apache project and submit pull requests to the github copy of the apache project? I think that the github karaf is supposed to be an exact copy of the apache svn tree, so if you could modify it at github it wouldn't be any longer. tha

Re: Karaf web site revamp

2012-08-27 Thread Achim Nierbeck
Hi Charles and JB, great that you bring this back up again :) and thanks to JB for showing his mockups. I like the second mockup of JB the best, though I surely don't want to stop anyone to show his artistic challenges :D (Charles) I think it would be best if we just open this up for everyone who

Re: Attachment email thing and new JIRA….

2012-08-27 Thread Jean-Baptiste Onofré
Hi Dan, thanks for the update, I gonna upgrade on our side. Regards JB On 08/27/2012 08:53 PM, Daniel Kulp wrote: Since I know Karaf folks have started using this….. The JIRA upgrade over the weekend seems to have broken all the RSS feed URL's that were being used to generate the attachment

Attachment email thing and new JIRA….

2012-08-27 Thread Daniel Kulp
Since I know Karaf folks have started using this….. The JIRA upgrade over the weekend seems to have broken all the RSS feed URL's that were being used to generate the attachment email thing. I've updated the CXF stuff now to use the new URL. If you are getting strange errors from the scrip

Re: Karaf web site revamp

2012-08-27 Thread Jean-Baptiste Onofré
Hi Charles, I already started a new look'n feel for the website (in the mean time of the ServiceMix one). You can find some mockup proposal here: http://maven.nanthrax.net/goodies/karaf/mockup_1/ http://maven.nanthrax.net/goodies/karaf/mockup_2/ I plan to resume my work on it. Regards JB O

Re: Latest karaf-2.3.x Hangs on Shutdown

2012-08-27 Thread Scott England-Sullivan
JB, Sorry about this. I should have checked the KARAF JIRA before asking here (KARAF-1763). I will attach the thread dump and add notes on what I found. Thanks, Scott ES On Wed, Aug 22, 2012 at 3:22 PM, Scott England-Sullivan wrote: > Thanks JB, > > I am stepping through it now but you may b

Re: Attaching Patch to JIRA Issue

2012-08-27 Thread Scott England-Sullivan
Thanks Charles. WRT other versions, that is the only one I have found that is affected by that issue. On Mon, Aug 27, 2012 at 1:10 AM, Charles Moulliard wrote: > Will do that today. Is the release 2.3 only affected or all karaf releases > ? > > On Sun, Aug 26, 2012 at 7:32 PM, Scott England-Sul

Re: Why do we have port and pid file ?

2012-08-27 Thread Charles Moulliard
I think that I know the reason. Openshift restricts which port we can use on the cloud server (15000-35000). So if you try to bind a port which is not allow you will ge this error. [fabric-fuse.rhcloud.com bin]\> ./karaf karaf: JAVA_HOME not set; results may vary java.net.BindException: Permission

Re: Why do we have port and pid file ?

2012-08-27 Thread Charles Moulliard
After verification, it appears that karaf.base and karaf.home are defined correctly and both point to this location :/var/lib/stickshift/b8f9c391e35a4ab3b376e66929e7f2f6/app-root/runtime/fabric like also karaf.data : -Dkaraf.data=/var/lib/stickshift/b8f9c391e35a4ab3b376e66929e7f2f6/fabric/runtime

Re: Why do we have port and pid file ?

2012-08-27 Thread Guillaume Nodet
The port file is written with the following code: https://github.com/apache/karaf/blob/karaf-2.3.x/main/src/main/java/org/apache/karaf/main/Main.java#L1401 It uses the karaf.shutdown.port.file property which is defined in etc/config.properties and defaults to ${karaf.data}/port The code is quite

Re: Why do we have port and pid file ?

2012-08-27 Thread Charles Moulliard
Found the reason The path used does not correspond to the location where karaf runs on the cloud machine : Exception in thread "main" java.io.FileNotFoundException: /var/lib/stickshift/b8f9c391e35a4ab3b376e66929e7f2f6/app-root/runtime/fabric/data/port (No such file or directory) at java.io.FileIn

Re: Why do we have port and pid file ?

2012-08-27 Thread Charles Moulliard
FYI. In the data directory of the fabric/karaf instance running on openshift, the port file is not created [fabric-fuse.rhcloud.com ~]\> ls /var/lib/stickshift/b8f9c391e35a4ab3b376e66929e7f2f6/fabric/runtime/fabric/data/ cache/ generated-bundles/ karaf.out log/ tmp/ On Mon, A

Re: Why do we have port and pid file ?

2012-08-27 Thread Charles Moulliard
In my case, the issue is related to the port file not created by Karaf when the method setupShutdown is called ( https://github.com/apache/karaf/blob/trunk/main/src/main/java/org/apache/karaf/main/InstanceHelper.java) and not to the pidFile. On Mon, Aug 27, 2012 at 9:45 AM, Guillaume Nodet wrote:

Re: Why do we have port and pid file ?

2012-08-27 Thread Guillaume Nodet
The related code is in https://github.com/apache/karaf/blob/trunk/instance/core/src/main/java/org/apache/karaf/jpm/impl/ProcessImpl.java Could you try maybe deleting the file just after having created it using createTempFile ? The scripts that actually launch the process should create the file th