Janik von Rotz


2 min read

Install WordPress website

This post is part of my Your own Virtual Private Server hosting solution project.
Get the latest version of this article here: https://gist.github.com/9408580.

Introduction

WordPress is web software you can use to create a beautiful website or blog.

Requirements

Installation

Create the website directory

sudo mkdir /var/www/[wordpress]/

Open the WordPress site directory

cd /var/www/[wordpress]/

Download latest WordPress package and untar it

sudo wget http://wordpress.org/latest.tar.gz
sudo tar -xzvf latest.tar.gz

Copy the untared files to the current folder and delete the other files

sudo cp -r ./wordpress/* ./
sudo rm -r wordpress
sudo rm latest.tar.gz

Let’s create the MySQL WordPress database and user.

mysql -u root -p

Enter the MySQL root user password.

Create the WordPress database.

CREATE DATABASE [wordpress];

Create the WordPress database user.

CREATE USER [wordpress]@localhost;

Set the password for the WordPress database user.

SET PASSWORD FOR [wordpress]@localhost = PASSWORD("[password]");

Grant WordPress user full access on WordPress database.

GRANT ALL PRIVILEGES ON [wordpress].* TO [wordpress]@localhost IDENTIFIED BY '[password]';

Refresh MySQL and exit.

FLUSH PRIVILEGES;
exit

Add the Nginx configuration to the WordPress website.

server{    
  ...

  location / {
    try_files $uri $uri/ /index.php?$args;
  }
 
  ...
}

Update permissions for the www-data group.

sudo chown www-data:www-data /var/www/[wordpress] -R 

Test config and reload Nginx service.

sudo nginx -t && sudo service nginx reload

Open the browser again on //[host] and install the WordPress blog.

Source

WordPress Nginx Codex How To Install Wordpress with nginx on Ubuntu 12.04 by Digital Ocean

Categories: Web server
Tags: blogging , ubuntu , wordpress
Improve this page
Show statistic for this page