You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ubuntu@ip-xxxx:~/xxx/github/databend$ bendctl cluster create
bendctl: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory
Cause
Our release build uses libssl 1.0.0 but the most recent ubuntu uses libssl 1.1.0 instead. They are not compatible, so they are using the different soname.
I think it's the most trouble-free solution to statically link OpenSSL in case different users can have different versions of OpenSSL installed in their system.
Summary
Cause
Our release build uses
libssl 1.0.0
but the most recent ubuntu useslibssl 1.1.0
instead. They are not compatible, so they are using the different soname.In order to address this problem, we need to:
The text was updated successfully, but these errors were encountered: