- Install LEMP stack on Debian 10
- Configure Wordpress on LEMP Stack
- Downloading WordPress
- Access the site and finish wordpress setup
- Migrating or Moving a Wordpress site
- Troubleshooting
- Appendix:
Install LEMP stack on Debian 10
(Linux, Nginx, MariaDB, PHP)
Set Up a Firewall with UFW on Debian
Install firewall - ufw
sudo apt install ufw
Configure Firewall policy
sudo ufw default deny incoming
sudo ufw default allow outgoing
# allow ssh, http, https
sudo ufw allow ssh
sudo ufw allow http
sudo ufw allow https
Enable ufw and check status
sudo ufw enable
sudo ufw status
Resetting or Disabe ufw
sudo ufw disable
# Any rules that you created with UFW will no longer be active. You can always run sudo ufw enable if you need to activate it later.
sudo ufw reset
# This will disable UFW and delete any rules that were previously defined.
Install nginx
sudo apt update
sudo apt install nginx
Installing MariaDB
sudo apt install mariadb-server
When the installation is finished, it’s recommended that you run a security script that comes pre-installed with MariaDB. This script will remove some insecure default settings and lock down access to your database system. Start the interactive script by running:
sudo mysql_secure_installation
And set root password.
ALTER USER 'root'@'localhost' IDENTIFIED BY 'MY_NEW_PASSWORD';
FLUSH PRIVILEGES;
Note: Install the MySQL client if the database server is outside and you want to test connection from WordPress server.
$ sudo apt install default-mysql-client
# or
$ sudo apt install mycli
$ mysql -h example.com:12345 -u user -p
Login to mariadb
$ sudo mariadb
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 61
Server version: 10.3.18-MariaDB-0+deb10u1 Debian 10
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
Check user access
MariaDB [(none)]> SHOW GRANTS FOR 'dbuser'@'localhost';
Show users
MariaDB [(none)]> SELECT user FROM mysql.user;
Delete database (troubleshooting purpose)
MariaDB [(none)]> DROP DATABASE wp_demosite;
Query OK, 12 rows affected (0.029 sec)
Sample tests:
# create database
MariaDB [(none)]> CREATE DATABASE example_database;
# create new user and grant access
MariaDB [(none)]> GRANT ALL ON example_database.* TO 'example_user'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;
# Flush the privileges to ensure that they are saved and available in the current session:
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> exit;
Installing PHP
sudo apt install php-fpm php-mysql
Configuring Nginx to Use the PHP Processor
Create your project directory
sudo mkdir /var/www/your_domain
Assign ownership of the directory with the $USER environment variable, which should reference your current system user:
sudo chown -R $USER:$USER /var/www/wp-test
Create a configuration for your domain
sudo nano /etc/nginx/sites-available/wp-test
# Sample Content
server {
listen 80;
listen [::]:80;
root /var/www/wp-test;
index index.php index.html index.htm;
server_name dev.yourdomain.com;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
}
}
Activate new configuration
sudo ln -s /etc/nginx/sites-available/wp-test /etc/nginx/sites-enabled/
Test config and reload nginx
# test configuration
sudo nginx -t
# reload nginx
sudo systemctl reload nginx
Create Test php file
$ cat /var/www/wp-test/info.php
<?php
phpinfo();
Secure Nginx with Let’s Encrypt on Debian 9
Installing Certbot
To add the backports repository, first open /etc/apt/sources.list
and add below lines.
deb http://deb.debian.org/debian stretch-backports main contrib non-free
deb-src http://deb.debian.org/debian stretch-backports main contrib non-free
Then,
sudo apt update
Install Certbot’s Nginx package with apt:
sudo apt install python-certbot-nginx -t stretch-backports
or
$ apt install certbot python3-certbot-nginx
Confirming Nginx’s Configuration
Make sure your server block configuration contains correct server_name
value for your domain.
$ sudo cat /etc/nginx/sites-available/wp-test |grep server_name
server_name dev.yourdomain.com;
Verify and reload nginx config
sudo nginx -t
sudo systemctl reload nginx
Certbot can now find the correct server block and update it.
Obtaining an SSL Certificate
$ certbot --nginx -d dev.yourdomain.com -d mail.dev.yourdomain.com
# or
$ certbot --nginx -m admin@local -d beta.iamgini.com
It will ask for email address for notifications; also auto-redirect to https
Verifying Certbot Auto-Renewal
Test the renewal process, you can do a dry run with certbot:
sudo certbot renew --dry-run
Enable certbot automatic renewal for cloudflare CDN
sudo certbot certonly \
--dns-cloudflare \
--dns-cloudflare-credentials /etc/cloudflare/credential.ini
-d www.mydomain.com
# list certificates
$ sudo certbot certificates
Configure Wordpress on LEMP Stack
Create Database and User
sudo mariadb -u root -p
CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
GRANT ALL ON wordpress.* TO 'wordpress_user'@'localhost' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
exit;
Installing Additional PHP Extensions
sudo apt update
sudo apt install php-curl php-gd php-intl php-mbstring php-soap php-xml php-xmlrpc php-zip
Restart php-fpm process
sudo systemctl restart php7.3-fpm.service
Configuring Nginx
Please ntoes, if you have enabled SSL (using Certbot) there will be two server blocks in your nginx configuration. Find the one with root /var/www/your_domain
and add some entries as below.
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;
}
. . .
}
Also adjust try_files
. . .
location / {
#try_files $uri $uri/ =404;
try_files $uri $uri/ /index.php$is_args$args;
}
. . .
Downloading WordPress
cd /tmp
curl -LO https://wordpress.org/latest.tar.gz
# extract
tar xzvf latest.tar.gz
# copy sample wp-config.php
cp /tmp/wordpress/wp-config-sample.php /tmp/wordpress/wp-config.php
# copy content to our domain location
sudo cp -a /tmp/wordpress/. /var/www/wp-test
# adjust permission
sudo chown -R www-data:www-data /var/www/wp-test
Setting up the WordPress Configuration File
Generate secret keys and use it inside the config.
curl -s https://api.wordpress.org/secret-key/1.1/salt/
Copy the content inside wp-config.php
where you can find same entries with dummy values.
Adjust database values
Configure db entries as we generated in firt steps.
. . .
define('DB_NAME', 'wordpress');
/** MySQL database username */
define('DB_USER', 'wordpress_user');
/** MySQL database password */
define('DB_PASSWORD', 'password');
. . .
define('FS_METHOD', 'direct');
Access the site and finish wordpress setup
Access the url over browser and complete wordpress configuration.
Migrating or Moving a Wordpress site
Now we login to old server and export our database and website files (media, scripts, plugins etc)
Export Database
# from old server
$ mysqldump -u root -p old_databse |gzip > old_databse_20190104.gz
Backup website files in zip file
Let’s gzip all web folder into a single file for easy transfer.
$ cd /var/www/
$ tar -cv html | gzip > mywpsite.tar.gz
Copy database and website backup to new server
scp user@old_server:/home/user/old_databse_20190104.gz .
scp user@old_server:/home/user/mywpsite.tar.gz .
Restore database on new server
### on new server
gunzip < old_databse_20190104.gz | mysql -u root -pMyPasswd wordpress101
Restore website files
### on new server
gunzip mywpsite.tar.gz
tar -xvf mywpsite.tar -C /web/pe/
Where -C
is to point the destination directory.
Update and Verify your wp-config.php
Check your database name, username and password are properly configured.
Troubleshooting
How to fix 404 not found nginx problem?
Change the line in the location block to:
try_files $uri $uri/ /index.php?q=$uri&$args;
and reload nginx
sudo systemctl reload nginx
How to fix mysqli_real_connect(): (HY000/2002):
Appendix:
bitnami deployment
- https://docs.bitnami.com/google/apps/wordpress-pro/configuration/create-vhost-nginx/