Database migration
This guide describes how to migrate UI Bakery Database to your instance. Here, we review three cases:
Back up all the databases on both instances before performing any actions.
Full instance migration
If you're moving from one instance to another and all the conditions below are true, then no extra actions are required. UI Bakery Postgres will be available from the start.
Internal MySQL migrated (
db
container settings and its data)UI Bakery Postgres migrated (
bakery-db
container settings and its data)UI Bakery Postgres is available via the same hostname/container name (
bakery-db
by default)UI_BAKERY_CREDENTIALS_SECRET
contains the same value
Partial instance migration (UI_BAKERY_CREDENTIALS_SECRET is the same)
If any of the conditions listed above are false, then you would need to manually migrate some technical data to make your UI Bakery Postgres available on the new instance.
Actions required on the OLD instance
Dump your
bakery-db
:
Connect to MySQL:
If you're sure that your workspace is the only workspace on your instance, then execute the query below to get all the required data at a time and skip to the new instance configuration. Otherwise, skip this step.
db_f6ba67bd851143108fffd117c7830983
<redacted>
Identify your workspace. Most likely it will be the only workspace but you can match its slug:
5
my-uib-workspace
test@uibakery
Using the id (as an organization_id) from the previous step, get your database_name and identify the datasource_id:
24
7
db_f6ba67bd851143108fffd117c7830983
BAKERY_POSTGRES
Using the datasource_id from the previous step, get the credentials of your DB:
<redacted>
Actions required on the NEW instance
Restore your PostgreSQL data:
Identify the user assigned to your database:
db_f6ba67bd851143108fffd117c7830983
bakery=CTc/bakery=T/bakeryu_9424ec8c70d14f1898bd410def46797c=c/bakery
Migrate ownership of all tables to your user:
Connect to MySQL:
Identify your workspace. Most likely it will be the only workspace but you can match its slug:
5
my-new-uib-workspace
test-new@uibakery
Using the id (as an organization_id) from the previous step, identify your database_name and identify the datasource_id:
24
7
db_6c5a251217314da884fbb441f996cd0b
BAKERY_POSTGRES
Replace database_name with the value from the OLD instance:
Using the datasource_id from the 6th step, identify the credentials of your DB:
7
7
<redacted>
Replace credentials with the value from the OLD instance:
Data-only migration
If the two cases above do not apply to your new instance, there's one more way to get your data migrated.
Actions required on the OLD instance
Connect to your
bakery-db
:
Identify your database via the
\l
command (most likely it will be the third one, where the name starts with db_).Dump your database:
Actions required on the NEW instance
Open UI Bakery in a web browser, log in, and navigate to Data Sources.
Click on Query runner in the lower left corner, create a Query, and select UI Bakery Postgres in the Run query against dropdown.
Paste bakery-db.sql file contents in the query window.
Verify that everything is correct and execute the query.
Last updated
Was this helpful?