Skip to main content

SSL handshake failed: Secure connection truncated

Got this problem on Ubuntu 9.10 and 10.10.
svn co --username=xx https:/yy zz
“SSL handshake failed: Secure connection truncated”
According to this link bug-ubuntu The solution is:
sudo apt-get install libneon27
cd /usr/lib/
sudo rm libneon-gnutls.so.27
sudo ln -s /usr/lib/libneon.so.27 libneon-gnutls.so.27

Comments

Şulezinha said…
Thanks a lot! I have searched a lot on internet and it works perfectly. I am happy to use svn on ubuntu :)
Xingzhong said…
Thanks, work perfect on Debian
Kalpesh Patel said…
Thanks a lot it worked on Ubuntu like a charm.
Thanks buddy!!
DanielDK said…
It worked like a charm ( talking to beanstalk from rapidsvn)
CalcProgrammer1 said…
Works for me on Debian Testing (Wheezy), was having the issue installing ROS (Robot OS) from SVN.
Rafał Nowak said…
Doesn't work
James Marjie said…
Fixed my issue with Ubuntu Oneiric Ocelot.
alecive said…
I really love you!

Worked like a charm also on Ubuntu 11.10 (even if with Ubuntu 10.10 and 11.04 I didn't experienced this issue).

Can you please explain me what I did on my laptop?
oRcHiD said…
thank you soo much~!!! :)
Raj said…
Thanks very very much.......
Waseem said…
Awesome! After wasting an hour on nailing down SSL handshake issue with SVN, your step-by-step instructions just killed the issue right off the bat! Thanks :)
Tapan said…
Thanks :)

Popular posts from this blog

Create a groovy console and bind to selenium

Required groovy files In the previous posting we defined the pom file that we need for our build environment. Now we will setup some groovy files to get selenium and groovy running interactively. ConsoleWaiter.groovy The idea of Groovy Console I found on some other sides. Honour goes for instance too: http://josefbetancourt.wordpress.com/tag/eclipse-2/ I copied some code of this, and put it under src/test/groovy/com/jankester/selenium/test/utils: package com.jankester.selenium.test.utils /** * File: ConsoleWaiter.groovy */ import groovy.lang.Binding; import groovy.ui.Console; /** * Provides a wrapper for the console. * * Based on source by John Green * Adapted from: http://www.oehive.org/files/ConsoleWaiter.groovy * Released under the Eclipse Public License * http://www.eclipse.org/legal/epl-v10.html * * I added methods to allow use from Java. * * The run() method launches the console and causes this thread * to sleep until the console's window is closed.

Junit4 running parallel junit classes

To run junit testcases parallel, you can create your own class to run junit with: Add this tag to your class declaration. @RunWith(Parallelized.class) Implementation of this class looks like: package mypackage; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.TimeUnit; import org.junit.runners.Parameterized; import org.junit.runners.model.RunnerScheduler; public class Parallelized extends Parameterized {         private static class ThreadPoolScheduler implements RunnerScheduler     {         private ExecutorService executor;                 public ThreadPoolScheduler()         {             String threads = System.getProperty("junit.parallel.threads", "16");             int numThreads = Integer.parseInt(threads);             executor = Executors.newFixedThreadPool(numThreads);         }                 public void finished()         {             executor.shutdown();             try