How to transfer domain from one droplet to another droplet. Not just redirecting by using A record. I just want to Assign domain to another droplet.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hi @tinylightseagreenray,
From what I understand you mean to migrate the data over as well to your new Droplet is that correct? If that’s the case you’ll need to copy data over one Droplet to the Other. One way is what has already been mentioned using
rsync
andscp
the other one using a GUI is using FileZila. You can check this tutorial on more informationhttps://docs.digitalocean.com/products/droplets/how-to/transfer-files/
Hello there,
If you want to migrate a website from one droplet to another, you’ll need to copy the data across using tools like
rsync
orscp
. You can check our tutorial on How To Copy Files With Rsync Over SSHhttps://www.digitalocean.com/community/tutorials/how-to-copy-files-with-rsync-over-ssh
Additionally, if you have a database, you’ll need to export it and then import the database on the new droplet.
https://www.digitalocean.com/community/tutorials/how-to-import-and-export-databases-in-mysql-or-mariadb
Regards