[Neo4j] Indices missing on database copy

2011-08-07 Thread WBT
By the way, thanks to Michael and T. noppanit for your quick replies! Grace and peace, WBT ___ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user

[Neo4j] Indices missing on database copy

2011-08-04 Thread WBT
Hello all, I have a moderate size Neo4j graph database (100G) with several manual and automatic indices. It was built on a Linux server that I'll call Machine A. I can copy [cp] the database directory to another folder on the same machine, and it seems to work fine. I can open the database in

Re: [Neo4j] Indices missing on database copy

2011-08-04 Thread Michael Hunger
DId you zip the files up before copying them? Perhaps you forgot -r for recursive packaging? If you copied the files directly you also have to provide a -r flag for recursive subdirectory copying. Could you check if the index files are there on the filesystem (on the source and target

Re: [Neo4j] Indices missing on database copy

2011-08-04 Thread noppanit
I suppose you could use luke http://code.google.com/p/luke/downloads/list to have a look that the indices are still there after copying. -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-Indices-missing-on-database-copy-tp3226778p3226806.html Sent

Re: [Neo4j] Indices missing on database copy

2011-08-04 Thread WBT
Nevermind. The issue was that, on machine B [Mac], the command g = new Neo4jGraph(~/fulldb/mydbnameCopy2) didn't substitute the ~ for my home directory. Instead of accessing the existing database, it quietly created a new database, which naturally had only the default indices and no data. I hope