Report this

What is the reason for this report?

Multiple Wordpress Site in one Droplet

Posted on November 30, 2013

I have two droplets. Unfortunately temporarily I am facing some trouble with one of the droplet and have decided to migrate the files of that droplet to another droplet. The other droplet already consists some files and is up and running. I am trying to migrate wordpress site to that droplet. I created new folder in var/www and uploaded all the necessary files. From here I have no idea how to proceed. Can someone help me solve the issue?

Answer a question...

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.
0

Hi there,

You could follow the steps from this video on how to host multiple WordPress websites on the same server with Apache Virtual Hosts:

Essentially, what needs to happen is:

  • Download a new copy of WordPress with the wget command:
wget wordpress.org/latest.zip
  • After that extract the files
unzip latest.zip
  • Then move the files to the /var/www/ folder:
mv wordpress /var/www/your_site.com
  • Then set the owner of the file to the Apache2 user:
chown -R www-data:www-data /var/www/your_site.com
  • After that copy the existing Apache config:
sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/your_site.conf
  • Then enable the new site:
sudo a2ensite
  • Run a configtest:
sudo apachectl -t
  • If you get Syntax OK reload Apache:
sudo systemctl reload apache2
  • Then create a new MySQL database and username. To create the database first access MySQL:
mysql

Then run the following queries:

CREATE DATABASE wp_site;

CREATE USER 'wp_site'@'%' IDENTIFIED BY 'use_secure_password_here';

GRANT ALL PRIVILEGES ON wp_site.* TO 'wp_site'@'%' WITH GREANT OPTION;
  • Finally, access the site via your web browser to finish the installation.

Hope that this helps. Regards, Bobby

I also followed the steps and it is not working . <br> <br>1GB Ram 30GB SSD Disk New York 2 LAMP on Ubuntu 12.04 <br> <br>I am getting a database connections error and when i direct the page to install.php it get the following <br> <br>Error establishing a database connection <br>This either means that the username and password information in your wp-config.php file is incorrect or we can’t contact the database server at localhost. This could mean your host’s database server is down. <br> <br>Are you sure you have the correct username and password? <br>Are you sure that you have typed the correct hostname? <br>Are you sure that the database server is running? <br> <br>I check the database usernme and pass … it matches

I am wanting to host two wordpress installs/sites on this droplet

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.