Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
Hi, so I solved this issue, I first ran my container in -it mode, went to this path- etc/crypto-policies/back-ends and made following changes to these files- openssl.config- replaced "DEFAULT"...
Answer
#1: Initial revision
Hi, so I solved this issue, I first ran my container in `-it` mode, went to this path- `etc/crypto-policies/back-ends ` and made following changes to these files- `openssl.config-` replaced "`DEFAULT`" with "`LEGACY`" `opensslcng.config` replaced "`@SECLEVEL=2`" with "`@SECLEVEL=0`" Then I went to this path- `etc/crypto-policies` and made following changes to this file- `config` I replaced "`@SECLEVEL=2`" with "`@SECLEVEL=0`" By doing this you are lowering your security policies for tests to run with less restrictions, it is not recommended and better solution will be to just upgrade your stack and use latest keys. But in my case this worked like a charm :) I hope this helps someone