Versions Compared

Key

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

...

Upgrade the Dashboard on Linux

  1. Extract the new dashboard to the preferred location (e.g. /panintelligence/dashboard).

  2. Go into the Dashboard directory and there should be an upgrade_dashboard.sh file.

  3. Run the bash file and point to the location of the old dashboard (e.g. /panintelligence/old_dashboard) for example the command below.

Code Block
languagebash
cd /opt/panintelligence/Dashboard
./upgrade_dashboard.sh /opt/panintelligence/Old_Dashboard

Taking a backup of a repository

If you wish to take a backup of your repository, it can be done with:

Code Block
cd /opt/panintelligence/Dashboard
./configuration-tool --database --backup

The new backup of your repository will be stored at /opt/panintelligence/Dashboard/db/backups directory.

Restoring a repository.

Assuming you have backed up the dashboard and have a .sql file, it can be restored with

...