Report this

What is the reason for this report?

how to ssh wordpress backup into a new ubuntu VM

Posted on March 7, 2015

Hi i am trying to send a backup file of wordpress into a fresh install of ubuntu, however i have no clue on what to do. I could not install ubuntu with wordpress as restoring the backup file cannot have wordpress already installed.



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.

Yes i am able to ssh into new ubuntu install, but what command can i use to transfer files into root instead of sftp? i tried scp root@ip/root but it didnt work

If you are using the WordPress one-click image the default web root is /var/www/html so to transfer a file to that location you would use scp my_file.zip root@ip_address:/var/www/html/. The : between the IP address and the file path is important.

do i need to manually instead phpmyadmin in the new ubuntu installed?

By default we do not include phpmyadmin on our WordPress one-click. You can import your database (assuming a .sql file) by doing the following.

If you’re using the WordPress one-click there will already be a populated database. You’ll need to empty it before importing your backup. Once you’ve done that either by dropping and re-creating the wordpress database (and updating permissions) or by dropping all the tables in the database you can use this command to import your backup:

mysql -uroot -p wordpress < backup.sql

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.