Hi, starting new job today and having an issue wit...
# orm-help
r
Hi, starting new job today and having an issue with ubuntu 22.04 and prisma v2.27. I can't very well tell them they have to upgrade before I even get the code running on dayone. So I need to work this around. can some one give a hand?
1
Basically I think I have to "downgrade" open ssl to 1.1.1. I installed openssl 1.1.1 but I guess prisma doesn't see it? cuz I still get the same error about 3.0
Ok for future queriers, I found this solution
Copy code
# download binary openssl packages from Impish builds
wget <http://security.ubuntu.com/ubuntu/pool/main/o/openssl/openssl_1.1.1f-1ubuntu2.16_amd64.deb>
wget <http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl-dev_1.1.1f-1ubuntu2.16_amd64.deb>

# install downloaded binary packages
sudo dpkg -i libssl-dev_1.1.1f-1ubuntu2.16_amd64.deb
sudo dpkg -i openssl_1.1.1f-1ubuntu2.16_amd64.deb
here https://askubuntu.com/questions/1403837/how-do-i-use-openssl-1-1-1-in-ubuntu-22-04 There's a lot of noise in there so I wasn't sure it was going to work, but it certainly did. So give it a try.
r
Hi @Raif Harik 👋 I'm glad you could get it to work. Also this comment provides a similar fix to this issue.