pro7357

Results 2 comments of pro7357

Yeah, ssl.PROTOCOL_TLSv1_2 is deprecated. Referring to https://docs.python.org/3/library/ssl.html#client-side-operation, update those line with: sslcontext = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT) sslcontext.load_verify_locations("/etc/ssl/certs/ca-bundle.crt") I didn't have that cert. But cert from ncat work fine. I'm using /usr/share/ncat/ca-bundle.crt

I had this issue too. Apparently fuse3 provide fusermount3 instead of fusermount. Installing fuse2 fixed this.