{% extends "base-error.html" %}
{% block title %}Database - Migration/Operational Error{% endblock %}
{% block title_header %}Database Migration Error{% endblock %}
{% block navigation_bar %}-{% endblock %}
{% block content %}
Possible Reasons
-
Master Database (v{{ e.db_compatible_version }}) is not compatible with the current version of Pegasus (v{{ e.pegasus_compatible_version }}).
-
STAMPEDE Database (v{{ e.db_compatible_version }}) is not compatible with the current version of Pegasus (v{{ e.pegasus_compatible_version }}).
Solution(s)
{% if e.db_version < e.pegasus_version %}
- Please execute pegasus-db-admin update on the database you are trying to access.
{% endif %}
{% if e.db_version > e.pegasus_version %}
- The database was created using a newer version of pegasus. Restart Pegasus dashboard from the new Pegasus version
{% endif %}
{% endblock %}