diff options
author | Instrumental <jcgmisc@stl.gathman.org> | 2018-04-16 14:28:44 -0500 |
---|---|---|
committer | Instrumental <jcgmisc@stl.gathman.org> | 2018-04-16 14:28:56 -0500 |
commit | 6433cd51b05ba7a2edfbccb38db0e7c996819560 (patch) | |
tree | f41be9499c4dddd25bc71530671f28cc05a1ab6f /auth/auth-cass/docker/backup/cbackup.sh | |
parent | ed39a027a78a0ca08230b1d34c5dac5421819018 (diff) |
Create Cassandra Backup Scripts
Issue-ID: AAF-249
Change-Id: I014a925545b9be1171e625dfd751e77350843405
Signed-off-by: Instrumental <jcgmisc@stl.gathman.org>
Diffstat (limited to 'auth/auth-cass/docker/backup/cbackup.sh')
-rw-r--r-- | auth/auth-cass/docker/backup/cbackup.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/auth/auth-cass/docker/backup/cbackup.sh b/auth/auth-cass/docker/backup/cbackup.sh new file mode 100644 index 00000000..9c91d0c6 --- /dev/null +++ b/auth/auth-cass/docker/backup/cbackup.sh @@ -0,0 +1,8 @@ +cd /opt/app/cass_backup +DATA="ns role perm ns_attrib user_role cred cert x509 delegate approval approved future notify artifact health history" +PWD=cassandra +CQLSH="cqlsh -u cassandra -k authz -p $PWD" +for T in $DATA ; do + echo "Creating $T.dat" + $CQLSH -e "COPY authz.$T TO '$T.dat' WITH DELIMITER='|'" +done |