We are using the backup client to back up the File system and the Oracle database.
When I want to restore I will be using another server, do I also have to set up another Oracle schema user, or can I restore to a local database?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Mike,
Please have a look at the Stash backup client documentation at https://confluence.atlassian.com/display/STASH/Using+the+Stash+Backup+Client. It contains screenshots and examples of how to do backups and restores.
Cheers,
Michael
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there an example where the JDBC connection is to the builtin database on the restore server, i.e. The Stash built-in database, which runs HSQLDB,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you'd have to set
jdbc.driver=org.hsqldb.jdbcDriver
jdbc.url=jdbc:hsqldb:${stash.home}/data/db;shutdown=true;hsqldb.tx=mvlocks
jdbc.user=SA
jdbc.password=
But please note that this will restore the database to HSQLDB, which is an in-memory database. If you have a lot of data, you may need to increase the memory settings for Stash.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can do either.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is this with the override settings? How do specify a local DB on the restore server?
##################################
# Restore properties
##################################
# Optional. Enables overriding JDBC settings during the restore so that the restore can target a different database to
# the one that was backed up. Even if the other JDBC properties are defined, if this property is not set to true the
# JDBC settings will be ignored. If this is set to true then ALL of the following JDBC properties must be supplied.
#jdbc.override=true
# Optional. Ignored if jdbc.override is not set to true. Overrides the JDBC driver to use during restore.
#jdbc.driver=
# Optional. Ignored if jdbc.override is not set to true. Overrides the JDBC URL to use during restore.
#jdbc.url=
# Optional. Ignored if jdbc.override is not set to true. Overrides the JDBC user to use during restore.
#jdbc.user=
# Optional. Ignored if jdbc.override is not set to true. Overrides the JDBC password to use during restore.
#jdbc.password=
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.