Check if OrientDB is in backup mode/

62 Views Asked by At

We need to check in client app if OrientDB is creating backup. Is there any way to check?

1

There are 1 best solutions below

1
Michela Bonizzi On

OrientDB supports backup and and restore operations, like any database management system. The Backup can be performed by running the BACKUP DATABASE command. It's possible to automatize backups using the Automatic Backup server plugin, by modifying the

orientdb-server-config.xml

you should see the scheduled time in the server, like this one:

enter image description here

If you didn't modified the correct parameter in this file, you shouldn't have automatic backup enabled.

In case if you're using the Enterprise Edition you can check backup settings in the Server Management Area.

Hope it helps

Regards