WordPress is the most popular CMS (content management system) on the internet. It allows you to easily set up flexible blogs and websites on top of a MySQL backend with PHP processing. WordPress has seen incredible adoption and is a great choice for getting a website up and running quickly. After setup, almost all administration can be done through the web frontend.
In this guide, we’ll focus on getting a WordPress instance set up on a LEMP stack (Linux, Nginx, MySQL, and PHP) on an Ubuntu 18.04 server.
In order to complete this tutorial, you will need access to an Ubuntu 18.04 server.
You will need to perform the following tasks before you can start this guide:
sudo
user on your server: We will be completing the steps in this guide using a non-root user with sudo
privileges. You can create a user with sudo
privileges by following our Ubuntu 18.04 initial server setup guide.When you are finished the setup steps, log into your server as your sudo
user and continue below.
The first step that we will take is a preparatory one. WordPress uses MySQL to manage and store site and user information. We have MySQL installed already, but we need to make a database and a user for WordPress to use.
To get started, log into the MySQL root (administrative) account. If MySQL is configured to use the auth_socket
authentication plugin (the default), you can log into the MySQL administrative account using sudo
:
- sudo mysql
If you changed the authentication method to use a password for the MySQL root account, use the following format instead:
- mysql -u root -p
You will be prompted for the password you set for the MySQL root account.
First, we can create a separate database that WordPress can control. You can call this whatever you would like, but we will be using wordpress
in this guide to keep it simple. You can create the database for WordPress by typing:
- CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
Note: Every MySQL statement must end in a semi-colon (;). Check to make sure this is present if you are running into any issues.
Next, we are going to create a separate MySQL user account that we will use exclusively to operate on our new database. Creating one-function databases and accounts is a good idea from a management and security standpoint. We will use the name wordpressuser
in this guide. Feel free to change this if you’d like.
We are going to create this account, set a password, and grant access to the database we created. We can do this by typing the following command. Remember to choose a strong password here for your database user:
- GRANT ALL ON wordpress.* TO 'wordpressuser'@'localhost' IDENTIFIED BY 'password';
You now have a database and user account, each made specifically for WordPress. We need to flush the privileges so that the current instance of MySQL knows about the recent changes we’ve made:
- FLUSH PRIVILEGES;
Exit out of MySQL by typing:
- EXIT;
The MySQL session will exit, returning you to the regular Linux shell.
When setting up our LEMP stack, we only required a very minimal set of extensions in order to get PHP to communicate with MySQL. WordPress and many of its plugins leverage additional PHP extensions.
We can download and install some of the most popular PHP extensions for use with WordPress by typing:
- sudo apt update
- sudo apt install php-curl php-gd php-intl php-mbstring php-soap php-xml php-xmlrpc php-zip
Note: Each WordPress plugin has its own set of requirements. Some may require additional PHP packages to be installed. Check your plugin documentation to discover its PHP requirements. If they are available, they can be installed with apt
as demonstrated above.
When you are finished installing the extensions, restart the PHP-FPM process so that the running PHP processor can leverage the newly installed features:
- sudo systemctl restart php7.2-fpm
We now have all of the necessary PHP extensions installed on the server.
Next, we will be making a few minor adjustments to our Nginx server block files. Based on the prerequisite tutorials, you should have a configuration file for your site in the /etc/nginx/sites-available/
directory configured to respond to your server’s domain name or IP address and protected by a TLS/SSL certificate. We’ll use /etc/apache2/sites-available/wordpress
as an example here, but you should substitute the path to your configuration file where appropriate.
Additionally, we will use /var/www/wordpress
as the root directory of our WordPress install. You should use the web root specified in your own configuration.
Note: It’s possible you are using the /etc/nginx/sites-available/default
default configuration (with /var/www/html
as your web root). This is fine to use if you’re only going to host one website on this server. If not, it’s best to split the necessary configuration into logical chunks, one file per site.
Open your site’s server block file with sudo
privileges to begin:
- sudo nano /etc/nginx/sites-available/wordpress
Within the main server
block, we need to add a few location
blocks.
Start by creating exact-matching location blocks for requests to /favicon.ico
and /robots.txt
, both of which we do not want to log requests for.
We will use a regular expression location to match any requests for static files. We will again turn off the logging for these requests and will mark them as highly cacheable since these are typically expensive resources to serve. You can adjust this static files list to contain any other file extensions your site may use:
server {
. . .
location = /favicon.ico { log_not_found off; access_log off; }
location = /robots.txt { log_not_found off; access_log off; allow all; }
location ~* \.(css|gif|ico|jpeg|jpg|js|png)$ {
expires max;
log_not_found off;
}
. . .
}
Inside of the existing location /
block, we need to adjust the try_files
list so that instead of returning a 404 error as the default option, control is passed to the index.php
file with the request arguments.
This should look something like this:
server {
. . .
location / {
#try_files $uri $uri/ =404;
try_files $uri $uri/ /index.php$is_args$args;
}
. . .
}
When you are finished, save and close the file.
Now, we can check our configuration for syntax errors by typing:
- sudo nginx -t
If no errors were reported, reload Nginx by typing:
- sudo systemctl reload nginx
Next, we will download and set up WordPress itself.
Now that our server software is configured, we can download and set up WordPress. For security reasons in particular, it is always recommended to get the latest version of WordPress from their site.
Change into a writable directory and then download the compressed release by typing:
- cd /tmp
- curl -LO https://wordpress.org/latest.tar.gz
Extract the compressed file to create the WordPress directory structure:
- tar xzvf latest.tar.gz
We will be moving these files into our document root momentarily. Before we do that, we can copy over the sample configuration file to the filename that WordPress actually reads:
- cp /tmp/wordpress/wp-config-sample.php /tmp/wordpress/wp-config.php
Now, we can copy the entire contents of the directory into our document root. We are using the -a
flag to make sure our permissions are maintained. We are using a dot at the end of our source directory to indicate that everything within the directory should be copied, including any hidden files:
- sudo cp -a /tmp/wordpress/. /var/www/wordpress
Now that our files are in place, we’ll assign ownership them to the www-data
user and group. This is the user and group that Nginx runs as, and Nginx will need to be able to read and write WordPress files in order to serve the website and perform automatic updates.
- sudo chown -R www-data:www-data /var/www/wordpress
Our files are now in our server’s document root and have the correct ownership, but we still need to complete some more configuration.
Next, we need to make some changes to the main WordPress configuration file.
When we open the file, our first order of business will be to adjust some secret keys to provide some security for our installation. WordPress provides a secure generator for these values so that you do not have to try to come up with good values on your own. These are only used internally, so it won’t hurt usability to have complex, secure values here.
To grab secure values from the WordPress secret key generator, type:
- curl -s https://api.wordpress.org/secret-key/1.1/salt/
You will get back unique values that look something like this:
Warning: It is important that you request unique values each time. Do NOT copy the values shown below!
Outputdefine('AUTH_KEY', '1jl/vqfs<XhdXoAPz9 DO NOT COPY THESE VALUES c_j{iwqD^<+c9.k<J@4H');
define('SECURE_AUTH_KEY', 'E2N-h2]Dcvp+aS/p7X DO NOT COPY THESE VALUES {Ka(f;rv?Pxf})CgLi-3');
define('LOGGED_IN_KEY', 'W(50,{W^,OPB%PB<JF DO NOT COPY THESE VALUES 2;y&,2m%3]R6DUth[;88');
define('NONCE_KEY', 'll,4UC)7ua+8<!4VM+ DO NOT COPY THESE VALUES #`DXF+[$atzM7 o^-C7g');
define('AUTH_SALT', 'koMrurzOA+|L_lG}kf DO NOT COPY THESE VALUES 07VC*Lj*lD&?3w!BT#-');
define('SECURE_AUTH_SALT', 'p32*p,]z%LZ+pAu:VY DO NOT COPY THESE VALUES C-?y+K0DK_+F|0h{!_xY');
define('LOGGED_IN_SALT', 'i^/G2W7!-1H2OQ+t$3 DO NOT COPY THESE VALUES t6**bRVFSD[Hi])-qS`|');
define('NONCE_SALT', 'Q6]U:K?j4L%Z]}h^q7 DO NOT COPY THESE VALUES 1% ^qUswWgn+6&xqHN&%');
These are configuration lines that we can paste directly in our configuration file to set secure keys. Copy the output you received now.
Now, open the WordPress configuration file:
- sudo nano /var/www/wordpress/wp-config.php
Find the section that contains the dummy values for those settings. It will look something like this:
. . .
define('AUTH_KEY', 'put your unique phrase here');
define('SECURE_AUTH_KEY', 'put your unique phrase here');
define('LOGGED_IN_KEY', 'put your unique phrase here');
define('NONCE_KEY', 'put your unique phrase here');
define('AUTH_SALT', 'put your unique phrase here');
define('SECURE_AUTH_SALT', 'put your unique phrase here');
define('LOGGED_IN_SALT', 'put your unique phrase here');
define('NONCE_SALT', 'put your unique phrase here');
. . .
Delete those lines and paste in the values you copied from the command line:
. . .
define('AUTH_KEY', 'VALUES COPIED FROM THE COMMAND LINE');
define('SECURE_AUTH_KEY', 'VALUES COPIED FROM THE COMMAND LINE');
define('LOGGED_IN_KEY', 'VALUES COPIED FROM THE COMMAND LINE');
define('NONCE_KEY', 'VALUES COPIED FROM THE COMMAND LINE');
define('AUTH_SALT', 'VALUES COPIED FROM THE COMMAND LINE');
define('SECURE_AUTH_SALT', 'VALUES COPIED FROM THE COMMAND LINE');
define('LOGGED_IN_SALT', 'VALUES COPIED FROM THE COMMAND LINE');
define('NONCE_SALT', 'VALUES COPIED FROM THE COMMAND LINE');
. . .
Next, we need to modify some of the database connection settings at the beginning of the file. You need to adjust the database name, the database user, and the associated password that we configured within MySQL.
The other change we need to make is to set the method that WordPress should use to write to the filesystem. Since we’ve given the web server permission to write where it needs to, we can explicitly set the filesystem method to “direct”. Failure to set this with our current settings would result in WordPress prompting for FTP credentials when we perform some actions. This setting can be added below the database connection settings, or anywhere else in the file:
. . .
define('DB_NAME', 'wordpress');
/** MySQL database username */
define('DB_USER', 'wordpressuser');
/** MySQL database password */
define('DB_PASSWORD', 'password');
. . .
define('FS_METHOD', 'direct');
Save and close the file when you are finished.
Now that the server configuration is complete, we can finish up the installation through the web interface.
In your web browser, navigate to your server’s domain name or public IP address:
http://server_domain_or_IP
Select the language you would like to use:
Next, you will come to the main setup page.
Select a name for your WordPress site and choose a username (it is recommended not to choose something like “admin” for security purposes). A strong password is generated automatically. Save this password or select an alternative strong password.
Enter your email address and select whether you want to discourage search engines from indexing your site:
When you click ahead, you will be taken to a page that prompts you to log in:
Once you log in, you will be taken to the WordPress administration dashboard:
WordPress should be installed and ready to use! Some common next steps are to choose the permalinks setting for your posts (can be found in Settings > Permalinks
) or to select a new theme (in Appearance > Themes
). If this is your first time using WordPress, explore the interface a bit to get acquainted with your new CMS.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
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!
Shouldn’t this tutorial include the creation of the symbolic link of the server block between the sites-available and sites-activated folders?
https://www.digitalocean.com/community/tutorials/how-to-set-up-nginx-server-blocks-virtual-hosts-on-ubuntu-16-04
sudo ln -s /etc/nginx/sites-available/example.com /etc/nginx/sites-enabled/
In this old guide https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-with-lemp-on-ubuntu-16-04 there are some tweaks to manage permission.
Can you please update it also in this tutorial? Thank you.
I am getting 403 error on step 6, any help?
अच्छी जानकारी है, परन्तु ये सब किसी पुराने version के लिए है | मैने अपने DO के ड्रॉपलेट को मैनेज करने के लिए HindiMeTricks.Com पर दी गयी गाइड का उपयोग किया | उसमे php7.3 के साथ Wordpress Install करने की जानकारी दी गयी है | आप इसे यहाँ जाकर पढ़ सकते है :- https://www.hindimetricks.com/how-setup-wordpress-ubuntu-18-10-lemp-stack/
Steps 1 to 5 work fine, but nothing appears for step 6. Any ideas why? Thanks Alex
Also interested in how permissions work in this version versus 16.04. When following the above steps I don’t see the step where we set permissions so the sudo user created has SFTP access. I thought it was sudo usermod -a -G www-data your-user or something but that doesn’t seem to work with this?
Is there a whole wordpress file in step3 for nginx server block. My example.com is from https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-ubuntu-18-04. As you ask me finish it at first.
In your server block configuration, where is your root folder.
Hi @jellingwood ,
Thank you for the great tutorial. It seems like there are already a lot of recommendations and questions here. I am a newbie developer and therefore I want to offer you some of my feedback as well to improve the tutorial.
I am using Ubuntu 20.04 and will go through this full tutorial, sharing my experiences. I hope that you will use them to create a new tutorial for Ubuntu 20.04, incorporating this feedback. Here we go :)
Server version: 8.0.21-0ubuntu0.20.04.4 (Ubuntu)
Step 1 — Creating a MySQL Database and User for WordPress
When executing command:
I get two warnings (3719 and 3778). The advice is to use UTF8MB4, because this will be the character set for future releases. Therefore, I have adjusted my line of codes like this.
There are no more errors with this line.
Step 1 — Creating a MySQL Database and User for WordPress
In the tutorial, you say we are going to create an account. Then in the line of code, I don’t see this coming back.
To be complete, the line of code should be:
Step 2 — Installing Additional PHP Extensions
In addition to the installation of the plugins you suggested in code
, I also installed the following PHP extensions.
I am not quite sure if I am now overcomplete. I took it over as an advice from this source: https://www.osradar.com/install-wordpress-with-nginx-ubuntu-20-04/.
Of course, this line of code
needs then be updated to this line of code:
I managed to install wordpress and log in as admin but my main page is still showing the apache landscape and when i access my website by typing it on the browser it doesn’t show anything and downloads an archive called ‘download’. How can i fix that?
What does that mean if i use sudo nginx -t and get:
my site-available file for domain ramonsaudioworld.com contains: