-
Notifications
You must be signed in to change notification settings - Fork 60
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
JDBC driver URI for authentication #11
Comments
They should. If you access webadmin does the basic-auth dialog ask exactly for those two values? |
Neo4j version 1.8 On accessing webadmin it does asks for basic-auth dialog. On entering right credentials it allows access. import java.io.File def srcCon = Sql.newInstance('jdbc:neo4j://myhost:7474/', 'admin', 'admin123', 'org.neo4j.jdbc.Driver') srcCon.eachRow("START n=node(1) RETURN n.name as name") The same code above works if authentication is disabled. |
Hi Guys ,I am executing pega.yaml file .but getting below error . helm install mypega pega/pega --namespace mypega --values pega.yaml I have given uri as : driverUri: "C:\Users\singh610\Downloads/ojdbc7.jar" .please suggest me what to provide here ? what hexadecimal value it is expecting please help me on this . |
@ashishsinghalnl - try with the actual URL e.g. driverUri: "https://jdbc.postgresql.org/download/postgresql-42.2.19.jar" |
Neo4j server configured to use neo4j-contrib / authentication-extension.
When trying to use JDBC uri "jdbc:neo4j://localhost:7474/?user=myuser&password=admin"
Error thrown is "401 Unauthorized"
When the authenctication is removed , jdbc driver works fine.
Does authentication-extension and JDBC driver work togther?
-Sam
The text was updated successfully, but these errors were encountered: