[Neo4j] installation issues 2.1.0-M01

2014-02-23 Thread Tom Zeppenfeldt
tried to get in running on my server , but can't get it running - downloaded the Mac/Linux tar.gz - extracted in to my debian machine to a new dir - when ./bin/neo4j start , I get this root@NOWledge /e/neo4j-community-2.1.0-M01# ./bin/neo4j start WARNING: Max 1024 open files allowed, minimum

Re: [Neo4j] installation issues 2.1.0-M01

2014-02-23 Thread Mark Needham
Hey Those are just warnings - they shouldn't stop it from starting. Can you paste the contents of data/log/console.log? Mark On 23 February 2014 19:43, Tom Zeppenfeldt tomzeppenfe...@gmail.com wrote: tried to get in running on my server , but can't get it running - downloaded the Mac/Linux

Re: [Neo4j] installation issues 2.1.0-M01

2014-02-23 Thread Tom Zeppenfeldt
root@NOWledge /e/neo4j-community-2.1.0-M01# ./bin/neo4j start WARNING: Max 1024 open files allowed, minimum of 40 000 recommended. See the Neo4j manual. WARNING! You are using an unsupported Java runtime. * Please use Oracle(R) Java(TM) 7 to run Neo4j Server. Download Java Platform (JDK) 7

Re: [Neo4j] How to remove old node labels and relationship types in web ui?

2014-02-23 Thread Aran Mulholland
Or any way to choose your own colour scheme? On Fri, Feb 21, 2014 at 9:59 AM, Chaoxu Tong blackcha...@gmail.com wrote: Hi Guys, I was doing some experiments in the db and now have removed all the nodes. But the node labels still show up in web ui and you can click them. Is there anyway to

[Neo4j] get direction of batchinsert relationships

2014-02-23 Thread Javad Karabi
after retrieving a nodes relationships via: http://api.neo4j.org/2.0.1/org/neo4j/unsafe/batchinsert/BatchInserter.html#getRelationships(long) how do i determine the direction of that relationship? i need a way to, in batchinsert mode, get all the relationships for a node, of a given type and

Re: [Neo4j] get direction of batchinsert relationships

2014-02-23 Thread Michael Hunger
What is your use-case for that? Can't you solve it with preprocessing? The batch-inserter is really more about writing instead of reading. You can compare start and end-node-ids of the relationship with the node you have in your hand for direction. Michael Am 24.02.2014 um 00:22 schrieb Javad

Re: [Neo4j] installation issues 2.1.0-M01

2014-02-23 Thread Michael Hunger
Does this directory exist? /etc/neo4j-community-2.1.0-M01/data/ and if so with which user permissions? Am 24.02.2014 um 01:55 schrieb Tom Zeppenfeldt tomzeppenfe...@gmail.com: Michael, uncommenting the line in neo4j-server.properties ( which is BTW in my case in the

Re: [Neo4j] Cypher How to set the php array as neo4j property value

2014-02-23 Thread Michael Hunger
please use cypher parameters for both of your id-fields. $params =array(user_id=$user_id,id=[13455,5665,657758]); $query= match (u:user{id:{user_id}})-[r:contains]-(c:files) set r.id={id}; $result = new Everyman\Neo4j\Cypher\Query($client, $query,$params); Am 24.02.2014 um