How to migrate to another VPS #369
-
I want to migrate to another VPS and keep all my project and their settings.
What do you think is the best way to do it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I've recently migrated to another server with the following services on Dokploy:
Unfortunately, my VPS provider lacked backup capabilities, so I had to migrate everything manually. Here’s what I did:
This allowed me to move everything from one server to another(Including Dokploy). The only issue I encountered was with Appsmith, which I couldn't get to work after the migration. |
Beta Was this translation helpful? Give feedback.
I've recently migrated to another server with the following services on Dokploy:
Unfortunately, my VPS provider lacked backup capabilities, so I had to migrate everything manually. Here’s what I did:
rsync -aAXv --delete \ --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found","/swapfile"} \ -e "ssh -i /path/to/private_key" user@source_vps_ip:/ /
UPDATE admin SET "serverIp" = 'new_server_ip' WHERE "serverIp" = 'old_server_ip';
This a…