Manticore Search index dump utility
WARNING! Early stage of development - working with Manticore > 5.0.3
Always check the result of creating a backup
To work correctly, the script must be run with sudo or as a root user
yarn global add indexbackup
sudo indexbackup --dry-run index_name
sudo indexbackup index_name > backup.tar.gz
sudo indexbackup --all | aws s3 cp - s3://buket-name/backup.tar.gz
# cd to manticore data dir
cd /var/lib/manticore
# stop manticore
systemctl stop manticore
# get data from aws s3 and unpack
aws s3 cp s3://buket-name/backup.tar.gz - | tar -C . -xzf
# start manticore
systemctl start manticore
# check result
mysql -P9306
indexbackup --help
indexbackup -v
Generated using TypeDoc