Infra Error Workaround

문주은·2024년 3월 20일
0

Error name : curl: (60) SSL certificate problem: unable to get local issuer certificate

1) Detail

$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

When I tried this command to install homebrew, It cannot be installed in Mac M3.

2) Reason

curl is having trouble verifying the SSL certificate of the server from which it's trying to download the Homebrew installation script.

3) Solutions

Solution 1) Update CA certificates

# Mac OS
$ brew install curl-ca-bundle

Solution 2) Use -k Option as a Temporary Workaround

$ /bin/bash -c "$(curl -k -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Template

Error name :

1) Detail

2) Reason

3) Solutions

Solution1) AAA
Solution2) BBB

profile
Data Engineer

0개의 댓글