XOR or ⊕ - a type of logical disjunction on two operands that results in a value of true if the operands, or disjuncts, have opposite truth values. A simple way to state this is "one or the other but not both."
Friday, April 15, 2016
Xtrabackup innobackupex - restore script
#!/bin/bash
service mysql stop
rm -r /var/lib/mysql/*
innobackupex --copy-back /path/to/backup
chown -R mysql:mysql /var/lib/mysql
service mysql start
echo "finished backup restore"
No comments:
Post a Comment