neo4j - Lazyweb cypher "Request Failed, Check authorization settings" -


i trying import lot of cypher queries neo4j server using lazyweb cypher http://www.lyonwj.com/lazywebcypher/.

i have uploaded file cypher queries present in format

match (f:person{userid:3980}), (h:person{userid:4026})with f,h create (f)-[:friends_with]->(h); match (f:person{userid:3980}), (h:person{userid:4027})with f,h create (f)-[:friends_with]->(h);  match (f:person{userid:3980}), (h:person{userid:4028})with f,h create (f)-[:friends_with]->(h);  match (f:person{userid:3980}), (h:person{userid:4029})with f,h create (f)-[:friends_with]->(h);  match (f:person{userid:3980}), (h:person{userid:4030})with f,h create (f)-[:friends_with]->(h);  match (f:person{userid:3980}), (h:person{userid:4031})with f,h create (f)-[:friends_with]->(h);  match (f:person{userid:3980}), (h:person{userid:4032})with f,h create (f)-[:friends_with]->(h); 

these relationships. have provided default id , password , however, while trying run queries, giving me error, "request failed, check authorization settings".

any appreciated.

this happens when have either entered id or password wrong. http://www.lyonwj.com/lazywebcypher/ here in run cypher.

recheck it, remember, default neo4j/neo4j. also, neo4j prompts change password after first use.


Comments

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -