/**
* Copyright (c) 2002-2011 "Neo Technology,"
* Network Engine for Objects in Lund AB [http://neotechnology.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package slavetest.manual;
import java.io.File;
import java.io.IOException;
import java.util.Date;
import org.neo4j.graphdb.GraphDatabaseService;
import org.neo4j.helpers.collection.MapUtil;
import org.neo4j.kernel.Config;
import org.neo4j.kernel.HighlyAvailableGraphDatabase;
import org.neo4j.kernel.ha.zookeeper.NeoStoreUtil;
public class ManualTest1
{
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();
}
private static GraphDatabaseService startDb() throws IOException
{
return new HighlyAvailableGraphDatabase( PATH.getPath(), MapUtil.stringMap(
HighlyAvailableGraphDatabase.CONFIG_KEY_HA_MACHINE_ID, "1",
HighlyAvailableGraphDatabase.CONFIG_KEY_HA_ZOO_KEEPER_SERVERS, "127.0.0.1:2181,127.0.0.1:2182",
HighlyAvailableGraphDatabase.CONFIG_KEY_HA_SERVER, ME,
Config.ENABLE_REMOTE_SHELL, "true",
Config.KEEP_LOGICAL_LOGS, "true" ) );
}
}