Skip to content

Instantly share code, notes, and snippets.

@stuartf
Last active December 15, 2015 17:09
Show Gist options
  • Save stuartf/5294408 to your computer and use it in GitHub Desktop.
Save stuartf/5294408 to your computer and use it in GitHub Desktop.
Wipe all OAE data BE CAREFUL
#!/bin/sh
# Delete all cassandra data
cassandra-cli << EOF
drop keyspace oae;
EOF
# Delete all redis data
redis-cli << EOF
flushall
EOF
# Delete all elasticsearch data
curl -XDELETE 'http://localhost:9200/oae'
# Delete all rabbitmq data
sudo sh -c 'rabbitmqctl stop_app &&
rabbitmqctl reset &&
rabbitmqctl start_app'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment