Question about SSL certificate. #654
Unanswered
NanaKwesiAsante
asked this question in
FAQ
Replies: 2 comments
-
Do you have a proxy?
If so, you might need to add it to your environment variables.
To add proxy settings to your environment variables in bash so that curl
respects them, you need to define the appropriate proxy variables in your
shell configuration file. Here's how to do it:
1. Open your bash profile file (usually ~/.bashrc, ~/.bash_profile, or
~/.profile) with a text editor.
2. Add the following lines to the file, replacing the proxy URLs with
your actual proxy settings:
```
# Set proxy environment variables
export http_proxy="http://proxy_server:port"export
export https_proxy="http://proxy_server:port"export
export no_proxy="localhost,127.0.0.1,local.domain"
```
3. Save the file and reload your bash profile:
`source ~/.bashrc # or whichever file you edited`
Now curl should respect these proxy settings automatically. You can verify
this by running:
bash
env | grep -i proxy
Thanks,
Clint
…On Tue, Apr 15, 2025 at 3:14 PM Kwesi Acheampong ***@***.***> wrote:
I am trying to install LME but I am getting the below error message after
running this script
curl -s https://api.github.com/repos/cisagov/LME/releases/latest | jq -r
'.assets[0].browser_download_url' | xargs -I {} sh -c 'curl -L -O {} &&
unzip -d ~/LME $(basename {})'.
LME.BY.CIS.ERROR11.png (view on web)
<https://github.com/user-attachments/assets/a1228409-ae74-4df0-a88e-ba06093728e5>
(60) SSL certificate problem: unable to get local issuer certificate.
can anyone help me? FYI: i was on a vpn while doing it.
—
Reply to this email directly, view it on GitHub
<#654>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAQY33RYCGLAWGMDQF7TUIT2ZVLC5AVCNFSM6AAAAAB3GNWJBGVHI2DSMVQWIX3LMV43ERDJONRXK43TNFXW4OZYGIYDMNRVGY>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
-
you can add -v to the curl command to verify if its hitting a proxy - will give you verbose output. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to install LME but I am getting the below error message after running this script
curl -s https://api.github.com/repos/cisagov/LME/releases/latest | jq -r '.assets[0].browser_download_url' | xargs -I {} sh -c 'curl -L -O {} && unzip -d ~/LME $(basename {})'.
(60) SSL certificate problem: unable to get local issuer certificate.
can anyone help me? FYI: i was on a vpn while doing it.
Beta Was this translation helpful? Give feedback.
All reactions