Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to login to Typedb Cluster (Windows specific) #174

Open
geetanjalkkumar opened this issue Sep 8, 2021 · 2 comments
Open

Unable to login to Typedb Cluster (Windows specific) #174

geetanjalkkumar opened this issue Sep 8, 2021 · 2 comments

Comments

@geetanjalkkumar
Copy link

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.

@lolski lolski added this to the Bug Fixes milestone Nov 1, 2021
@lolski lolski changed the title Unable to logon to typedb cluster console through window machine Unable to login to Typedb Cluster (Windows specific) Nov 2, 2021
@alexjpwalker
Copy link
Member

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

@jamesreprise
Copy link
Contributor

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants