无法连接到 GCP

时间:2021-05-07 13:17:31

标签: python macos google-cloud-platform

我正在尝试连接到 GCP,我在其中设置了我的文件(“private_key_file”)并尝试读取该文件中的内容。

 def gcsStorageClient(errLogRef):        
    try:
    storage_client = storage.Client(os.environ.get("project_name"))
    bucket = storage_client.get_bucket(os.environ.get("bucket_name"))
    blob = bucket.get_blob(os.environ.get("private_key_file"))
    file = blob.download_as_string()
    return file
except Exception as error:
    print("error:: " + error)

但我从我的 MAC OS 中看到以下与 SSL 验证相关的异常,似乎 MAC 防火墙客户端阻止了连接。有什么办法可以说 SSLVerify false 或创建代理以连接到 GCP

exception: HTTPSConnectionPool(host='oauth2.googleapis.com', port=443): Max retries exceeded
with url: /token (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate
verify failed (_ssl.c:852)

有什么办法可以说 SSLVerify false 或创建代理以连接到 GCP?

PS:所有的环境值和json文件都已经设置到运行环境中了。

1 个答案:

答案 0 :(得分:0)

我最近遇到了这个。运行 Install Certificates.command 对我有用,但我的 python 版本是 3.6.8。我还手动更改了 repo python 脚本以使用 python3(更改为 #!/usr/bin/env python -> #!/usr/bin/env python3)。

请参考以下链接了解更多信息:

Mac OSX python ssl.SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:749)