Skip to content

Instantly share code, notes, and snippets.

@mneedham
Last active June 23, 2017 19:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mneedham/1e2f34a1fae89c92c0b2c88946302cac to your computer and use it in GitHub Desktop.
Save mneedham/1e2f34a1fae89c92c0b2c88946302cac to your computer and use it in GitHub Desktop.
function config {
mkdir -p /tmp/ce/$1/conf
cat > /tmp/ce/$1/conf/neo4j.conf << EOF
unsupported.dbms.edition=enterprise
dbms.mode=CORE
dbms.security.auth_enabled=false
dbms.memory.heap.initial_size=512m
dbms.memory.heap.max_size=512m
dbms.memory.pagecache.size=100M
dbms.tx_log.rotation.retention_policy=false
dbms.connector.bolt.type=BOLT
dbms.connector.bolt.enabled=true
dbms.connector.bolt.listen_address=0.0.0.0:7687
dbms.connector.http.type=HTTP
dbms.connector.http.enabled=true
dbms.connector.http.listen_address=0.0.0.0:7474
dbms.connectors.default_listen_address=0.0.0.0
dbms.connectors.default_advertised_address=${1}
causal_clustering.initial_discovery_members=instance0:5000,instance1:5000,instance2:5000
causal_clustering.leader_election_timeout=2s
EOF
}
function run {
HOST=$1
INSTANCE=instance$HOST
config $INSTANCE
docker run --name=$INSTANCE --detach \
--publish=$[7474+$HOST]:7474 \
--publish=$[7687+$HOST]:7687 \
--net=cluster \
--hostname=$INSTANCE \
--volume /tmp/ce/$INSTANCE/conf:/conf \
--volume /tmp/ce/$INSTANCE/data:/data \
neo4j/neo4j-experimental:3.1.0-M13-beta3-enterprise
}
docker network create --driver=bridge cluster
run 0
run 1
run 2
@raviolli
Copy link

What's the network for? It seems like this won't work unless they are on the same machine. If you wanted to do these are seperated machines part of a network already, one could skip the --net right?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment