Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upTLS Options Documentation Not Working with v20.03.1 #5350
Comments
|
I was hoping an engineer could look at this, verify if this was a feature at all. But in mean time editing documentation to show another path. |
|
I had the same problem,
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Documentation
The documentation for TLS Options does not work in curent version
v20.03.1Specifically this no longer works:
# Now, connect to server using TLS $ dgraph live --tls_dir tls -s 21million.schema -f 21million.rdf.gzWorkaround
The correct command depends on how the certificate was setup, and also the host that the service is running on. I was able to get it working with this:
dgraph live \ --tls_cacert ./tls/ca.crt \ --tls_cert ./tls/client.user.crt \ --tls_key ./tls/client.user.key \ --tls_server_name "$(hostname -f)" \ -s 21million.schema \ -f 21million.rdf.gzI setup my environment with this: