Re: Karaf SSH invalid encoding

2018-11-12 Thread Jean-Baptiste Onofré
Hi Miroslav, can you share the LC_ALL, LANG and TERM env variables when you have or don't have the issue ? Thanks, Regards JB On 12/11/2018 08:33, Miroslav Beranič wrote: > Hi all, > > I have the same issue on Apache Karaf 4.2.2 ( commit > da7ae8f76f2db1347200ff6bb4760e4ecbb1b454 ), I get/see ?

Re: Karaf SSH invalid encoding

2018-11-12 Thread Miroslav Beranič
Hi JB, I get this ( from Linux shell ): [mm@mm1 ~]$ echo $LC_ALL [mm@mm1 ~]$ echo $LANG en_US.UTF-8 [mm@mm1 ~]$ echo $TERM xterm-256color [mm@mm1 ~]$ >From inside Karaf's Shell: karaf@root()> shell:echo $LANG en_US.UTF-8 karaf@root()> shell:echo $LC_ALL null karaf@root()> shell:echo $TERM xter

Re: Running Camel in a Karaf OSGi container

2018-11-12 Thread Ranx
Paul, I agree. I've used Blueprint for a long time and it is a thorny with Camel. I've limited my use of Blueprint these days to 1) configuration, 2) service management, and 3) bootstrap. If one keeps in minimal like that Blueprint is fine. But I've gone into a lot of different clients where they

Error downloading mvn:org.jolokia/jolokia-osgi/1.3.5

2018-11-12 Thread imranrazakhan
I am trying to install jolokia in enviornment where i dont have access to internet on running below >feature:install jolokia I am getting error Error downloading mvn:org.jolokia/jolokia-osgi/1.3.5 As per excerpt from documentation https://karaf.apache.org/manual/latest/monitoring Kar

Re: Error downloading mvn:org.jolokia/jolokia-osgi/1.3.5

2018-11-12 Thread Francois Papon
Hi, If you don't have access to internet it's normal. However you can download it and install manually with the bundle:install shell command. https://repo1.maven.org/maven2/org/jolokia/jolokia-osgi/1.3.5/jolokia-osgi-1.3.5.jar regards, François Papon fpa...@apache.org Le 12/11/2018 à 22:00, i

Re: Error downloading mvn:org.jolokia/jolokia-osgi/1.3.5

2018-11-12 Thread imranrazakhan
But as per my expectation according to above mention document, it should be available in default distribution??? -- Sent from: http://karaf.922171.n3.nabble.com/Karaf-User-f930749.html

Re: Error downloading mvn:org.jolokia/jolokia-osgi/1.3.5

2018-11-12 Thread Jean-Baptiste Onofré
Hi, no, it's an optional dependency. The feature description is included in Karaf distribution, but not the underlying bundle. It's what we name an optional feature. You can populate the Karaf system repo by hand or creating your own custom distribution to populate the jolokia bundle. Regards J