Hi All, I am using gRPC (Python) version 1.37.
I faced "E0422 18:00:54.951129442 6086 ssl_transport_security.cc:1824] No match found for server name: NODE1." . After look at https://groups.google.com/g/grpc-io/c/pJnoc_MHkfc , I fixed the issue by adding gRPC-server-hostname in "Common Name" of SSL cert files. The checking is a little strict. SSL_CTX_set_verify() in OpenSSL can specify callback function which we can bypass all security checking. https://github.com/grpc/grpc/issues/15461 : it is a Pull Request to disable SSL verication like SSL_CTX_set_verify() in Python. But cannot find corresponding fix in source code. Looks like it is never got merged at all. In gRPC (Python or C++), is there any way to bypass/disable SSL validation? Thanks -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/grpc-io/5ba27e27-8b6c-47fd-b1cd-6e01eb0343ben%40googlegroups.com.
