10 KiB
Backup and restore a database
You can use Database services to backup a database and store the backup artifact in the Object Storage module. Later on, if the original database is damaged, you can use the backup artifact to restore the database. The restore process creates a database instance.
This example shows you how to back up and restore a MySQL database.
Backup the database instance
As background, assume that you have created a database instance with the following characteristics:
- Name of the database instance:
guest1 - Flavor ID:
10 - Root volume size:
2 - Databases:
db1anddb2 - Users: The
user1user with thepasswordpassword
First, get the ID of the
guest1database instance by using the trovelistcommand:$ trove list +--------------------------------------+--------+-----------+-------------------+--------+-----------+------+ | id | name | datastore | datastore_version | status | flavor_id | size | +--------------------------------------+--------+-----------+-------------------+--------+-----------+------+ | 97b4b853-80f6-414f-ba6f-c6f455a79ae6 | guest1 | mysql | mysql-5.5 | ACTIVE | 10 | 2 | +--------------------------------------+--------+-----------+-------------------+--------+-----------+------+Back up the database instance by using the trove
backup-createcommand. In this example, the backup is calledbackup1. In this example, replaceINSTANCE_IDwith97b4b853-80f6-414f-ba6f-c6f455a79ae6:Note
This command syntax pertains only to python-troveclient version 1.0.6 and later. Earlier versions require you to pass in the backup name as the first argument.
$ trove backup-create INSTANCE_ID backup1 +-------------+--------------------------------------+ | Property | Value | +-------------+--------------------------------------+ | created | 2014-03-18T17:09:07 | | description | None | | id | 8af30763-61fd-4aab-8fe8-57d528911138 | | instance_id | 97b4b853-80f6-414f-ba6f-c6f455a79ae6 | | locationRef | None | | name | backup1 | | parent_id | None | | size | None | | status | NEW | | updated | 2014-03-18T17:09:07 | +-------------+--------------------------------------+Note that the command returns both the ID of the original instance (
instance_id) and the ID of the backup artifact (id).Later on, use the trove
backup-listcommand to get this information:$ trove backup-list +--------------------------------------+--------------------------------------+---------+-----------+-----------+---------------------+ | id | instance_id | name | status | parent_id | updated | +--------------------------------------+--------------------------------------+---------+-----------+-----------+---------------------+ | 8af30763-61fd-4aab-8fe8-57d528911138 | 97b4b853-80f6-414f-ba6f-c6f455a79ae6 | backup1 | COMPLETED | None | 2014-03-18T17:09:11 | +--------------------------------------+--------------------------------------+---------+-----------+-----------+---------------------+You can get additional information about the backup by using the trove
backup-showcommand and passing in theBACKUP_ID, which is8af30763-61fd-4aab-8fe8-57d528911138.$ trove backup-show BACKUP_ID +-------------+----------------------------------------------------+ | Property | Value | +-------------+----------------------------------------------------+ | created | 2014-03-18T17:09:07 | | description | None | | id | 8af...138 | | instance_id | 97b...ae6 | | locationRef | http://10.0.0.1:.../.../8af...138.xbstream.gz.enc | | name | backup1 | | parent_id | None | | size | 0.17 | | status | COMPLETED | | updated | 2014-03-18T17:09:11 | +-------------+----------------------------------------------------+- Name of the database instance:
Restore a database instance
Now assume that your
guest1database instance is damaged and you need to restore it. In this example, you use the trovecreatecommand to create a new database instance calledguest2.- You specify that the new
guest2instance has the same flavor (10) and the same root volume size (2) as the originalguest1instance. - You use the
--backupargument to indicate that this new instance is based on the backup artifact identified byBACKUP_ID. In this example, replaceBACKUP_IDwith8af30763-61fd-4aab-8fe8-57d528911138.
$ trove create guest2 10 --size 2 --backup BACKUP_ID +-------------------+----------------------------------------------+ | Property | Value | +-------------------+----------------------------------------------+ | created | 2014-03-18T17:12:03 | | datastore | {u'version': u'mysql-5.5', u'type': u'mysql'}| |datastore_version | mysql-5.5 | | flavor | {u'id': u'10', u'links': [{u'href': ...]} | | id | ac7a2b35-a9b4-4ff6-beac-a1bcee86d04b | | name | guest2 | | status | BUILD | | updated | 2014-03-18T17:12:03 | | volume | {u'size': 2} | +-------------------+----------------------------------------------+- You specify that the new
Verify backup
Now check that the new
guest2instance has the same characteristics as the originalguest1instance.Start by getting the ID of the new
guest2instance.$ trove list +-----------+--------+-----------+-------------------+--------+-----------+------+ | id | name | datastore | datastore_version | status | flavor_id | size | +-----------+--------+-----------+-------------------+--------+-----------+------+ | 97b...ae6 | guest1 | mysql | mysql-5.5 | ACTIVE | 10 | 2 | | ac7...04b | guest2 | mysql | mysql-5.5 | ACTIVE | 10 | 2 | +-----------+--------+-----------+-------------------+--------+-----------+------+Use the trove
showcommand to display information about the new guest2 instance. Pass in guest2'sINSTANCE_ID, which isac7a2b35-a9b4-4ff6-beac-a1bcee86d04b.$ trove show INSTANCE_ID +-------------------+--------------------------------------+ | Property | Value | +-------------------+--------------------------------------+ | created | 2014-03-18T17:12:03 | | datastore | mysql | | datastore_version | mysql-5.5 | | flavor | 10 | | id | ac7a2b35-a9b4-4ff6-beac-a1bcee86d04b | | ip | 10.0.0.3 | | name | guest2 | | status | ACTIVE | | updated | 2014-03-18T17:12:06 | | volume | 2 | | volume_used | 0.18 | +-------------------+--------------------------------------+Note that the data store, flavor ID, and volume size have the same values as in the original
guest1instance.Use the trove
database-listcommand to check that the original databases (db1anddb2) are present on the restored instance.$ trove database-list INSTANCE_ID +--------------------+ | name | +--------------------+ | db1 | | db2 | | performance_schema | | test | +--------------------+Use the trove
user-listcommand to check that the original user (user1) is present on the restored instance.$ trove user-list INSTANCE_ID +--------+------+-----------+ | name | host | databases | +--------+------+-----------+ | user1 | % | db1, db2 | +--------+------+-----------+Notify users
Tell the users who were accessing the now-disabled
guest1database instance that they can now accessguest2. Provide them withguest2's name, IP address, and any other information they might need. (You can get this information by using the troveshowcommand.)Clean up
At this point, you might want to delete the disabled
guest1instance, by using the trovedeletecommand.$ trove delete INSTANCE_ID