You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@karaf.apache.org by "Jean-Baptiste Onofré (JIRA)" <ji...@apache.org> on 2012/07/29 12:38:35 UTC

[jira] [Assigned] (KARAF-1683) "no matching cipher found" error connecting via SSH to wrapper Karaf service - on Ubuntu

     [ https://issues.apache.org/jira/browse/KARAF-1683?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jean-Baptiste Onofré reassigned KARAF-1683:
-------------------------------------------

    Assignee: Jean-Baptiste Onofré
    
> "no matching cipher found" error connecting via SSH to wrapper Karaf service - on Ubuntu
> ----------------------------------------------------------------------------------------
>
>                 Key: KARAF-1683
>                 URL: https://issues.apache.org/jira/browse/KARAF-1683
>             Project: Karaf
>          Issue Type: Bug
>          Components: karaf-os-integration
>    Affects Versions: 2.2.8, 2.3.0
>         Environment: Ubuntu 12.04 64-bit. OpenJDK 7
>            Reporter: Hendy Irawan
>            Assignee: Jean-Baptiste Onofré
>             Fix For: 2.2.9, 2.3.0, 3.0.0
>
>
> When wrapper is used to install service in Ubuntu 12.04 (or any Ubuntu for that matter, probably Debian too), SSH is not possible.
> {code}
> no matching cipher found: client aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc,aes256-cbc,arcfour,rijndael-cbc@lysator.liu.se server 
> {code}
> The reason is Debian doesn't set JAVA_HOME due to policy (https://bugs.launchpad.net/ubuntu/+source/java-common/+bug/364794)
> Workaround is to put this in the bin/<name>-service script :
> {code}
> export JAVA_HOME=$(readlink -f /usr/bin/javac | sed "s:/bin/javac::")
> {code}
> It should be default, or probably like this :
> {code}
> [ -z $JAVA_HOME ] && export JAVA_HOME=$(readlink -f /usr/bin/javac | sed "s:/bin/javac::")
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira