How can i migrate my chatwoot db data from one hosting to other hosting?
Currently my chatwoot is installed on hostinger as an application and on my other vps server it is same, but i want to migrate chat and all the data from my old vps to new vps ?
Use CLI commands for that: n8n export:entities to export all your data on the old instance n8n import:entities - to import it on the new instance CLI commands | n8n Docs
hi @Burhan_Nathdwara
In your case, what needs to be migrated is essentially the PostgreSQL database and the uploaded files, because that is where Chatwoot stores chats and related data. What I would do is take a full database backup from the old VPS using pg_dump, restore that backup into the database on the new VPS using psql, and then make sure the storage/uploads volume is copied as well, since attachments are stored there. I would also make sure both instances are running the same Chatwoot version and that the environment variables match. If you are using Hostinger templates, it is especially important to check how volumes are configured, because missing the storage volume is a common reason for partial migrations, where the chats are present but files or attachments are missing.