Skip to content

Problems upgrading from 1.1.1 to 3.0.2 #21941

Answered by MossabDiae
westor7 asked this question in Q&A
Discussion options

You must be logged in to vote

Step by step fix for debian related OS based on tmshort answer:

  1. make sure libraries are indeed found in /usr/local/lib64
ls /usr/local/lib64/
# >>  libcrypto.so.3  libssl.a  libssl.so ...
  1. make sure the libraries path is missing from cat /etc/ld.so.conf.d/* output
  2. configure the new path
# add it
sudo echo /usr/local/lib64/ >  /etc/ld.so.conf.d/openssl.conf

# load it
sudo ldconfig
  1. you should see /usr/local/lib64 in the list
ldconfig -v |less
  1. confirm openssl is working
openssl version
# > OpenSSL 3.1.0 14 Mar 2023 (Library: OpenSSL 3.1.0 14 Mar 2023)

Replies: 5 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by paulidale
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
triaged: question The issue contains a question resolved: answered The issue contained a question which has been answered
6 participants
Converted from issue

This discussion was converted from issue #18025 on September 03, 2023 22:42.