📦 Exporting and Importing Database
If you need to migrate your Sage WebUI data (e.g., chat histories, configurations, etc.) from one server to another or back it up for later use, you can export and import the database. This guide assumes you're running Sage WebUI using the internal SQLite database (not PostgreSQL).
Follow the steps below to export and import the webui.db
file, which contains your database.
Exporting Database
To export the database from your current Sage WebUI instance:
-
Use
docker cp
to copy the database file:
Thewebui.db
file is located in the container inside the directory/app/backend/data
. Run the following command to copy it into your local machine:docker cp sage-open-webui:/app/backend/data/webui.db ./webui.db
-
Transfer the exported file to the new server:
You can use FileZilla or any other file transfer tool of your choice to move thewebui.db
file to the new server.infoFileZilla is recommended for its ease of use when transferring files to the new server.
Importing Database
After moving the webui.db
file to the new server, follow these steps:
-
Install and Run Sage WebUI on the New Server:
Set up and run Sage WebUI using a Docker container. Follow the instructions provided in the 🚀 Getting Started to install and start the Sage WebUI container. Once it's running, stop it before performing the import step.docker stop sage-open-webui
-
Use
docker cp
to copy the database file to the container:
Assuming the exportedwebui.db
file is in your current working directory, copy it into the container:docker cp ./webui.db sage-open-webui:/app/backend/data/webui.db
-
Start the Sage WebUI container:
Start the container again to use the imported database.docker start sage-open-webui
The new server should now be running Sage WebUI with your imported database.
Notes
- This export/import process only works if you're using the internal SQLite database (
webui.db
). - If you're using an external PostgreSQL database, this method is not applicable because the database is managed outside the container. For PostgreSQL, you'd need to follow PostgreSQL-specific tools and procedures to back up and restore your database.
Why It's Important
This approach is particularly useful when:
- Migrating your Sage WebUI data to a new server or machine.
- Creating backups of your data before an update or modification.
- Testing Sage WebUI on multiple servers with the same setup.
# Quick commands summary for export and import
# Export:
docker cp sage-open-webui:/app/backend/data/webui.db ./webui.db
# Stop container on the new server:
docker stop sage-open-webui
# Import:
docker cp ./webui.db sage-open-webui:/app/backend/data/webui.db
# Start container:
docker start sage-open-webui
With these steps, you can easily manage your Sage WebUI migration or backup process. Keep in mind the database format you're using to ensure compatibility.