I'm trying to setup neo4j on ubuntu virtual server but having issues connecting.
curl -H "Accept: application/json; charset=UTF-8" -H "Content-Type: application/json" -X POST http://localhost:7474/db/data/cypher -d '{ > "query" : "CREATE (n:Person { name : {name} }) RETURN n", > "params" : { > "name" : "Foo" > } > }' { "errors" : [ { "code" : "Neo.ClientError.Security.Unauthorized", "message" : "No authentication header supplied." } ] } if i try to change password with 'neo4j-admin set-initial-password' i get : command failed: initial password was not set because live Neo4j-users were detected. when i try to change the password with a rest call: curl -H "Accept: application/json; charset=UTF-8" -H "Content-Type: application/json" -X POST http://localhost:7474/user/neo4j/newpass12 { "errors" : [ { "code" : "Neo.ClientError.Security.Unauthorized", "message" : "No authentication header supplied." } ] } -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
