Replies: 4 comments 1 reply
-
Are you currently hosting your own instance of the OSS Logto, or are you utilizing our cloud service? If you have set up your own database, you can easily create a backup of the database by generating a dump file. This dump file serves as a snapshot of the database at a specific point in time, and you can subsequently use it to restore the database to that state whenever necessary. |
Beta Was this translation helpful? Give feedback.
-
I see, I'll put it on our feature request table for further discussion. Thanks for the report. |
Beta Was this translation helpful? Give feedback.
-
Hi, following a thorough review of the recent feature requests, we've determined that database backup and restore falls under infrastructure maintenance. Given our current resource constraints, we're prioritizing CIAM product features for now. We appreciate your input and will revisit this request when feasible. |
Beta Was this translation helpful? Give feedback.
-
Backup your databases docker exec -t your-db-container pg_dumpall -c -U postgres > dump_`date +%d-%m-%Y"_"%H_%M_%S`.sql Restore your databases cat your_dump.sql | docker exec -i your-db-container psql -U postgres
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
how to backup and restore pg schema and data
Beta Was this translation helpful? Give feedback.
All reactions