Error: error:25066067:DSO support routines:dlfcn_load:could not load the shared library
See original GitHub issueDescription
I encountered the error as title:
Error: error:25066067:DSO support routines:dlfcn_load:could not load the shared library
Failed Attempts
- GitHub Action Ubuntu versions
- 20.04
- 22.04
- 24.04
- Workaround:
export OPENSSL_CONF=/dev/null
Reference
Workflow Step Configuration
- name: Deploy App to Google Play internal track
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: r0adkll/upload-google-play@v1
with:
serviceAccountJsonPlainText: ${{ secrets.SERVICE_ACCOUNT_JSON }}
packageName: com.example.app
track: internal
releaseFiles: build/app/outputs/bundle/release/app-release.aab
Step Debugging
- I have enabled Step Debug Logging
Run r0adkll/upload-google-play@v1
with:
serviceAccountJsonPlainText: ***
packageName: ***
track: internal
releaseFiles: build/app/outputs/bundle/release/app-release.aab
inAppUpdatePriority: 0
/usr/bin/docker exec 97e64bd37f08b044e9f03cbacc8240862f90362a3eea25aae298815f6382b918 sh -c "cat /etc/*release | grep ^ID"
##[debug]ID=ubuntu
##[debug]ID_LIKE=debian
##[debug]Running JavaScript Action with default external tool: node12
##[debug]Finding files build/app/outputs/bundle/release/app-release.aab
Creating a new Edit for this release
Error: error:25066067:DSO support routines:dlfcn_load:could not load the shared library
##[debug]Node Action run completed with exit code 1
##[debug]GOOGLE_APPLICATION_CREDENTIALS='./serviceAccountJson.json'
##[debug]Finishing: Deploy App to Google Play internal track
Issue Analytics
- State:
- Created a year ago
- Reactions:1
- Comments:14
Top Results From Across the Web
error:25066067:DSO support routines:dlfcn_load:could not ...
As a workaround, I ran export OPENSSL_CONF=/dev/null before starting node. This prevents the issue and the code begins to work, however this ...
Read more >Node.js crypto fails to sign pem key string from file with error ...
I get this error message from the sign.sign() method. error:25066067:DSO support routines:dlfcn_load:could not load the shared library. The code ...
Read more >error:25078067:DSO support routines:win32_load:could not ...
Following the above steps, I am keeping on getting this error in running this command, any idea why? I am using free Developer...
Read more >error:25066067:DSO support routines :DLFCN_LOAD:could ...
So, I re-ran wpa_passphrase essid passphrase and copied the output to the wpa_supplicant.conf file. Reconnected and received the same messages. Did not work.......
Read more >tmsh show running-config" does not work with an error ... - AskF5
Key management library returned bad status: -7, error:25066067:DSO support routines:DLFCN_LOAD:could not load the shared library
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’ve got the workaround actually work by setting env within the step.
Sorry for posting on the closed thread, but I am experiencing the same issue.
I have a workflow with following versions:
The container image also uses Ubuntu 22.04 LTS. I also tried running
export OPENSSL_CONF=/dev/null
but this did not fix it for me. I just executed it in a step like this:How did you apply the
export OPENSSL_CONF=/dev/null
workarround to fix it?see https://github.com/MunichWays/munich-ways-app/blob/master/.github/workflows/android-release.yml for workflow and failed job here https://github.com/MunichWays/munich-ways-app/actions/runs/3504557103/jobs/5870309911