Git Product home page Git Product logo

Comments (13)

relationaldba avatar relationaldba commented on May 14, 2024 7

Got the same error on Ubuntu 22.04. My system has libffi8 installed and creating a symbolic link to /usr/lib/x86_64-linux-gnu/libffi.so.8 does not work.

I was able to resolve it by installing libffi7 and then creating a symbolic link to /usr/lib/x86_64-linux-gnu/libffi.so.7.

sudo apt install libffi7
sudo ln -s /usr/lib/x86_64-linux-gnu/libffi.so.7 /usr/lib/x86_64-linux-gnu/libffi.so.6

from pgtoolsservice.

carloshorstmann avatar carloshorstmann commented on May 14, 2024 5

I Resolve this creating a symbolic link:

sudo ln -s /usr/lib/x86_64-linux-gnu/libffi.so.7 /usr/lib/x86_64-linux-gnu/libffi.so.6

from pgtoolsservice.

shifu137 avatar shifu137 commented on May 14, 2024 1

I Resolve this creating a symbolic link:

sudo ln -s /usr/lib/x86_64-linux-gnu/libffi.so.7 /usr/lib/x86_64-linux-gnu/libffi.so.6

Thanks! this worked for me on Linux Mint 20.1

from pgtoolsservice.

Hemath-life avatar Hemath-life commented on May 14, 2024 1

sudo ln -s libffi.so.7 /usr/lib/x86_64-linux-gnu/libffi.so.6

this is worked in my Ubuntu 20.04

from pgtoolsservice.

FiresideCode avatar FiresideCode commented on May 14, 2024

Had the same issue today.

from pgtoolsservice.

alexmetelli avatar alexmetelli commented on May 14, 2024

Same issue on Arch and Azure Studio Postgres extension crashing right after launch

from pgtoolsservice.

moccy avatar moccy commented on May 14, 2024

I fixed this on Arch Linux by installing the libffi6 AUR package: https://aur.archlinux.org/packages/libffi6/

from pgtoolsservice.

villecoder avatar villecoder commented on May 14, 2024

Running Ubuntu 21.04.

I took @carloshorstmann 's advice, but I have libffi.so.8. So my command was:

sudo ln -s /usr/lib/x86_64-linux-gnu/libffi.so.8 /usr/lib/x86_64-linux-gnu/libffi.so.6

However, I still cannot open a pgsql connection. My Tasks output reads as follows:

It seems the debugger cannot resolve /opt/hostedtoolcache/Python/3.6.12/x64/lib/python3.6/posixpath.py
This may make the debugger miss breakpoints in the standard library.
Related bug: https://bugs.python.org/issue1180193
[Error - 3:11:15 PM] Connection to server got closed. Server will not be restarted.

from pgtoolsservice.

sgryphon avatar sgryphon commented on May 14, 2024

Appears to be a duplicate of #218 and should be closed.

They have the same error, a dialog that pops up on start and says "OSS DB Tools Service component exited unexpectedly. Please restart Azure Data Studio.", then an error reported in the output section:

"It seems the debugger cannot resolve /opt/hostedtoolcache/Python/3.6.12/x64/lib/python3.6/posixpath.py
This may make the debugger miss breakpoints in the standard library.
Related bug: https://bugs.python.org/issue1180193
... a stack trace ...
ImportError: libffi.so.6: cannot open shared object file: No such file or directory
[Error - 12:57:17 PM] Connection to server got closed. Server will not be restarted."

The important bit is the missing "libffi.so.6"

There are many other duplicates (that should probably be closed as well)

#239
#251
#275
#279
#280
#282
#283

Work around:

So far, the workaround for some systems linking libffi.so.6 to version 7 seems to work:

sudo ln -s libffi.so.7 /usr/lib/x86_64-linux-gnu/libffi.so.6

The workaround does not work if you only have version 8, e.g. Ubuntu 20.10 -- it gets past the first error but then just fails. You can check which version you have via:

ls -la /usr/lib/x86_64-linux-gnu/libffi*

The other workaround is to directly install the version 6 libraries directly:

curl -o libffi6_3.2.1-8_amd64.deb http://mirrors.kernel.org/ubuntu/pool/main/libf/libffi/libffi6_3.2.1-8_amd64.deb
sudo apt install ./libffi6_3.2.1-8_amd64.deb

from pgtoolsservice.

jrrfilho avatar jrrfilho commented on May 14, 2024

Running Ubuntu 21.04.

I took @carloshorstmann 's advice, but I have libffi.so.8. So my command was:

sudo ln -s /usr/lib/x86_64-linux-gnu/libffi.so.8 /usr/lib/x86_64-linux-gnu/libffi.so.6

However, I still cannot open a pgsql connection. My Tasks output reads as follows:

It seems the debugger cannot resolve /opt/hostedtoolcache/Python/3.6.12/x64/lib/python3.6/posixpath.py
This may make the debugger miss breakpoints in the standard library.
Related bug: https://bugs.python.org/issue1180193
[Error - 3:11:15 PM] Connection to server got closed. Server will not be restarted.

In my case de installed version was libffi.so.7. Looking for the version of your libffi installed using Synaptic before running the command above.

from pgtoolsservice.

ianw1974 avatar ianw1974 commented on May 14, 2024

On Fedora 37, this can be resolved by installing libffi3.1:

[root@elise ~]# dnf whatprovides libffi.so.6
Last metadata expiration check: 0:06:50 ago on Tue 28 Feb 2023 22:31:53 CET.
libffi3.1-3.1-32.fc36.i686 : Compatibility package for libffi transition from 3.1 to 3.4.2.
Repo        : fedora
Matched from:
Provide    : libffi.so.6

as the base libffi package is for libffi.so.8.

from pgtoolsservice.

ianw1974 avatar ianw1974 commented on May 14, 2024

And for Fedora 38:

dnf install libffi3.1

will resolve the issue

from pgtoolsservice.

nasc17 avatar nasc17 commented on May 14, 2024

Issue has been addressed in our unstable release of PostgreSQL extension v0.4.2 using pgtoolsservice v1.8.0. We would appreciate your verification that it has been handled appropriately.

from pgtoolsservice.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.