public static final File PATH = new File( "var/man/db1" );
static final String ME = "127.0.0.1:5559";
public static void main( String[] args ) throws Exception
{
NeoStoreUtil store = new NeoStoreUtil( PATH.getPath() );
System.out.println( "Starting store: createTime=" + new Date( store.getCreationTime() ) +
" identifier=" + store.getStoreId() + " last committed tx=" + store.getLastCommittedTx() );
GraphDatabaseService db = startDb();
System.out.println( "Waiting for ENTER (for clean shutdown)" );
System.in.read();
db.shutdown();
}