Open geetanjalkkumar opened 3 years ago
This looks like an issue where a string value needs to be quoted, maybe something like
typedb console --cluster=127.0.0.1:1729 --username admin --password --tls-enabled=true --tls-root-ca='C:\GRAKN\rootCA.pem'
or perhaps the backslashes need to be escaped:
typedb console --cluster=127.0.0.1:1729 --username admin --password --tls-enabled=true --tls-root-ca=C:\\GRAKN\\rootCA.pem
This looks to be a bug in the Windows version, no combination of quotes or full vs relative paths seemed to get this to work.
I am trying to logon to typedb cluster using command
typedb console --cluster=127.0.0.1:1729 --username admin --password --tls-enabled=true --tls-root-ca=C:\GRAKN\rootCA.pem
But getting error
missing required parameter for option '--tls-root-ca' (<tlsRootCA>)
Same command is working fine on mac machine. Also, when I tried connecting through python typedb client it is working fine.
Issue is specific to window command. Looking for the resolution.