Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Open the administration page from the welcome page and open the “Repository” tab.

  • Click on “Create Backup” and save the file to a backup location.

UI Expand
titleBackup has timed out

When experiencing timeouts during the creation of a backup using either the backup tool or the administration page. You can adjust the timeout settings using the following guidelines.

Backup Tool

Using the  --timeout parameter you can set the timeout period in seconds, when setting it to zero the timeout period will be removed completly.

Code Block
languagebash
java -jar blueriq-studio-backup-tool.jar backup --timeout=0

Administration Page

When a timeout occurs during the creation of a backup in the administration page, you can extends the timeout period in the Web.Config. The Web.Config can be found in the [Blueriq installation directory]\Studio\wwwroot\Administration\Web.config. 

The administration page uses a connection to the management service. This connection requires a requestTimeout, which by default is set to two minutes during the installation of Blueriq:

Code Block
languagexml
<managementservice>
<connection url="http://localhost:8095/Services/ManagementService" user="administrationpage" password="administrationpage" requestTimeout="00:02:00"/>
</managementservice>

You can extend the timeout period by adjusting the requestTimeout parameter in a HH:MM:SS notation. Setting it to 10675199.02:48:05.4775807 will effectively create an infinite timeout.

Restoring backups

Only backups created from the same or older versions of Blueriq Studio can be restored. If a backup of an older version is restored the repository is automatically upgraded by Blueriq Studio.

...