SSL/TLS plugin initailization failed (VM plugin missing ? OS libraries missing ?)
Hello, I have this error when trying to use the network: "SSL/TLS plugin initialization failed (VM plugin missing ? OS libraries missing ?)" What library could be missing on my operating system? I appears after an update of my operating system I think. I am on Archlinux. Julien
What does the following return for you ? $ ldd bin/pharo-vm/libSqueakSSL.so linux-gate.so.1 => (0xf779e000) libssl.so.1.0.0 => /lib/i386-linux-gnu/libssl.so.1.0.0 (0xf7703000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf754d000) libcrypto.so.1.0.0 => /lib/i386-linux-gnu/libcrypto.so.1.0.0 (0xf7360000) /lib/ld-linux.so.2 (0xf777c000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf735b000) Each dependency should be satisfied.
On 8 May 2017, at 12:43, Julien Delplanque <julien@tamere.eu> wrote:
Hello,
I have this error when trying to use the network:
"SSL/TLS plugin initialization failed (VM plugin missing ? OS libraries missing ?)"
What library could be missing on my operating system?
I appears after an update of my operating system I think.
I am on Archlinux.
Julien
Thank you, Apparently I have one library missing: ldd /usr/share/pharo/vm/libSqueakSSL.so linux-gate.so.1 (0xf77bb000) libssl.so.1.0.0 => not found libc.so.6 => /usr/lib32/libc.so.6 (0xf75ab000) /usr/lib/ld-linux.so.2 (0x565a9000) I'll try to fix this. But I guess other people on Arch will encounter this problem. Julien
Ok, I installed the missing library: yaourt -S lib32-openssl-1.0 now when I do: ldd /usr/share/pharo/vm/libSqueakSSL.so I get: /usr/share/pharo/vm/libSqueakSSL.so: /usr/lib32/libssl.so.1.0.0: version `OPENSSL_1.0.0' not found (required by /usr/share/pharo/vm/libSqueakSSL.so) linux-gate.so.1 (0xf77f1000) libssl.so.1.0.0 => /usr/lib32/libssl.so.1.0.0 (0xf7731000) libc.so.6 => /usr/lib32/libc.so.6 (0xf7571000) libcrypto.so.1.0.0 => /usr/lib32/libcrypto.so.1.0.0 (0xf7360000) /usr/lib/ld-linux.so.2 (0x565de000) libdl.so.2 => /usr/lib32/libdl.so.2 (0xf735b000) So it is still not working, I still get the exception in Pharo. :-( Julien On 08/05/17 12:50, Sven Van Caekenberghe wrote:
What does the following return for you ?
$ ldd bin/pharo-vm/libSqueakSSL.so linux-gate.so.1 => (0xf779e000) libssl.so.1.0.0 => /lib/i386-linux-gnu/libssl.so.1.0.0 (0xf7703000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf754d000) libcrypto.so.1.0.0 => /lib/i386-linux-gnu/libcrypto.so.1.0.0 (0xf7360000) /lib/ld-linux.so.2 (0xf777c000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf735b000)
Each dependency should be satisfied.
On 8 May 2017, at 12:43, Julien Delplanque <julien@tamere.eu> wrote:
Hello,
I have this error when trying to use the network:
"SSL/TLS plugin initialization failed (VM plugin missing ? OS libraries missing ?)"
What library could be missing on my operating system?
I appears after an update of my operating system I think.
I am on Archlinux.
Julien
On 8 May 2017, at 13:17, Julien Delplanque <julien@tamere.eu> wrote:
Ok, I installed the missing library:
yaourt -S lib32-openssl-1.0
now when I do:
ldd /usr/share/pharo/vm/libSqueakSSL.so
I get:
/usr/share/pharo/vm/libSqueakSSL.so: /usr/lib32/libssl.so.1.0.0: version `OPENSSL_1.0.0' not found (required by /usr/share/pharo/vm/libSqueakSSL.so) linux-gate.so.1 (0xf77f1000) libssl.so.1.0.0 => /usr/lib32/libssl.so.1.0.0 (0xf7731000) libc.so.6 => /usr/lib32/libc.so.6 (0xf7571000) libcrypto.so.1.0.0 => /usr/lib32/libcrypto.so.1.0.0 (0xf7360000) /usr/lib/ld-linux.so.2 (0x565de000) libdl.so.2 => /usr/lib32/libdl.so.2 (0xf735b000)
It gives you an error (first line), right ?
So it is still not working, I still get the exception in Pharo. :-(
Julien
On 08/05/17 12:50, Sven Van Caekenberghe wrote:
What does the following return for you ?
$ ldd bin/pharo-vm/libSqueakSSL.so linux-gate.so.1 => (0xf779e000) libssl.so.1.0.0 => /lib/i386-linux-gnu/libssl.so.1.0.0 (0xf7703000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf754d000) libcrypto.so.1.0.0 => /lib/i386-linux-gnu/libcrypto.so.1.0.0 (0xf7360000) /lib/ld-linux.so.2 (0xf777c000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf735b000)
Each dependency should be satisfied.
On 8 May 2017, at 12:43, Julien Delplanque <julien@tamere.eu> wrote:
Hello,
I have this error when trying to use the network:
"SSL/TLS plugin initialization failed (VM plugin missing ? OS libraries missing ?)"
What library could be missing on my operating system?
I appears after an update of my operating system I think.
I am on Archlinux.
Julien
Yes, it does but the file is present and normally in the right version. I installed it using the package manager. Julien On 08/05/17 13:21, Sven Van Caekenberghe wrote:
On 8 May 2017, at 13:17, Julien Delplanque <julien@tamere.eu> wrote:
Ok, I installed the missing library:
yaourt -S lib32-openssl-1.0
now when I do:
ldd /usr/share/pharo/vm/libSqueakSSL.so
I get:
/usr/share/pharo/vm/libSqueakSSL.so: /usr/lib32/libssl.so.1.0.0: version `OPENSSL_1.0.0' not found (required by /usr/share/pharo/vm/libSqueakSSL.so) linux-gate.so.1 (0xf77f1000) libssl.so.1.0.0 => /usr/lib32/libssl.so.1.0.0 (0xf7731000) libc.so.6 => /usr/lib32/libc.so.6 (0xf7571000) libcrypto.so.1.0.0 => /usr/lib32/libcrypto.so.1.0.0 (0xf7360000) /usr/lib/ld-linux.so.2 (0x565de000) libdl.so.2 => /usr/lib32/libdl.so.2 (0xf735b000) It gives you an error (first line), right ?
So it is still not working, I still get the exception in Pharo. :-(
Julien
On 08/05/17 12:50, Sven Van Caekenberghe wrote:
What does the following return for you ?
$ ldd bin/pharo-vm/libSqueakSSL.so linux-gate.so.1 => (0xf779e000) libssl.so.1.0.0 => /lib/i386-linux-gnu/libssl.so.1.0.0 (0xf7703000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf754d000) libcrypto.so.1.0.0 => /lib/i386-linux-gnu/libcrypto.so.1.0.0 (0xf7360000) /lib/ld-linux.so.2 (0xf777c000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf735b000)
Each dependency should be satisfied.
On 8 May 2017, at 12:43, Julien Delplanque <julien@tamere.eu> wrote:
Hello,
I have this error when trying to use the network:
"SSL/TLS plugin initialization failed (VM plugin missing ? OS libraries missing ?)"
What library could be missing on my operating system?
I appears after an update of my operating system I think.
I am on Archlinux.
Julien
Well it seems to be a problem of your Linux distribution, maybe others can help you further.
On 8 May 2017, at 13:24, Julien Delplanque <julien@tamere.eu> wrote:
Yes, it does but the file is present and normally in the right version.
I installed it using the package manager.
Julien
On 08/05/17 13:21, Sven Van Caekenberghe wrote:
On 8 May 2017, at 13:17, Julien Delplanque <julien@tamere.eu> wrote:
Ok, I installed the missing library:
yaourt -S lib32-openssl-1.0
now when I do:
ldd /usr/share/pharo/vm/libSqueakSSL.so
I get:
/usr/share/pharo/vm/libSqueakSSL.so: /usr/lib32/libssl.so.1.0.0: version `OPENSSL_1.0.0' not found (required by /usr/share/pharo/vm/libSqueakSSL.so) linux-gate.so.1 (0xf77f1000) libssl.so.1.0.0 => /usr/lib32/libssl.so.1.0.0 (0xf7731000) libc.so.6 => /usr/lib32/libc.so.6 (0xf7571000) libcrypto.so.1.0.0 => /usr/lib32/libcrypto.so.1.0.0 (0xf7360000) /usr/lib/ld-linux.so.2 (0x565de000) libdl.so.2 => /usr/lib32/libdl.so.2 (0xf735b000) It gives you an error (first line), right ?
So it is still not working, I still get the exception in Pharo. :-(
Julien
On 08/05/17 12:50, Sven Van Caekenberghe wrote:
What does the following return for you ?
$ ldd bin/pharo-vm/libSqueakSSL.so linux-gate.so.1 => (0xf779e000) libssl.so.1.0.0 => /lib/i386-linux-gnu/libssl.so.1.0.0 (0xf7703000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf754d000) libcrypto.so.1.0.0 => /lib/i386-linux-gnu/libcrypto.so.1.0.0 (0xf7360000) /lib/ld-linux.so.2 (0xf777c000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xf735b000)
Each dependency should be satisfied.
On 8 May 2017, at 12:43, Julien Delplanque <julien@tamere.eu> wrote:
Hello,
I have this error when trying to use the network:
"SSL/TLS plugin initialization failed (VM plugin missing ? OS libraries missing ?)"
What library could be missing on my operating system?
I appears after an update of my operating system I think.
I am on Archlinux.
Julien
Hello, I have the same problem on Ubuntu 16.04 and Fedora 25... Any hints? Marc Am 08.05.2017 13:18 schrieb "Julien Delplanque" <julien@tamere.eu>: Ok, I installed the missing library: yaourt -S lib32-openssl-1.0 now when I do: ldd /usr/share/pharo/vm/libSqueakSSL.so I get: /usr/share/pharo/vm/libSqueakSSL.so: /usr/lib32/libssl.so.1.0.0: version `OPENSSL_1.0.0' not found (required by /usr/share/pharo/vm/libSqueakSSL.so) linux-gate.so.1 (0xf77f1000) libssl.so.1.0.0 => /usr/lib32/libssl.so.1.0.0 (0xf7731000) libc.so.6 => /usr/lib32/libc.so.6 (0xf7571000) libcrypto.so.1.0.0 => /usr/lib32/libcrypto.so.1.0.0 (0xf7360000) /usr/lib/ld-linux.so.2 (0x565de000) libdl.so.2 => /usr/lib32/libdl.so.2 (0xf735b000) So it is still not working, I still get the exception in Pharo. :-( Julien
participants (3)
-
Julien Delplanque -
Marc Hanisch -
Sven Van Caekenberghe