noopur kharche
noopur kharche

Reputation: 59

ssl handshake error while deploying google app engine

I am getting the following error while deploying the google app engine

ERROR: gcloud crashed (SSLHandshakeError): [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:661)

If you would like to report this issue, please run the following command: gcloud feedback

To check gcloud for common problems, please run the following command: gcloud info --run-diagnostics

I am using python 2.7 also tried turning off firewall settings but doesnot help. Any suggestions?

Upvotes: 1

Views: 1512

Answers (2)

Alejandra Acosta
Alejandra Acosta

Reputation: 13

I tried this to avoid SSL certificate validation and successfully worked gcloud config set auth/disable_ssl_validation True

Upvotes: 0

komarkovich
komarkovich

Reputation: 2319

This is a common network issue seen when there is a networking proxy present on your network or antivirus and similar software that might prevent the connection.

As you mentioned the issue was solved when deactivating an antivirus software. If you still want to run the antivirus, you can configure it properly to allow the connection to GCP.

Upvotes: 1

Related Questions