|
Summary:
WordPress is the most popular CMS systems, he is very easy to set up, easy to build your own personal website or blog, and the management is also very convenient.
This article will teach you how to use Nginx, PHP, MySQL to build their own WordPress system in Ubuntu 14.04 system.
Preparatory conditions:
sudo apt-get update
sudo apt-get install nginx mysql-server php5-fpm php5-mysql
The first step: to create a database and WordPress users, permissions and so on:
When in mysql-server installation, the system prompts for a password root user login database. To create a database as follows:
mysql -u root -p
CREATE DATABASE wordpress;
CREATE USER wordpresSUSEr @ localhost IDENTIFIED BY 'password';
. GRANT ALL PRIVILEGES ON wordpress * TO wordpressuser @ localhost;
FLUSH PRIVELEGES;
exit
STEP 2: Download the latest version of WordPress, and PHP install some components required for WordPress:
cd
wget https://wordpress.org/latest.tar.gz
tar zxvf latest.tar.gz
cd wordpress
apt-get install php5-gd libssh2-php
Step Three: Configure WordPress:
cd wordpress
cp wp-config-sample.php wp-config.php
Then edit the wp-config.php, you need to be changed as follows: name of the database is the database name that you created, and then change the user name and password you created.
// ** MySQL settings - You can get this info from your web host ** //
/ ** The name of the database for WordPress * /
define ( 'DB_NAME', 'wordpress');
/ ** MySQL database username * /
define ( 'DB_USER', 'wordpressuser');
/ ** MySQL database password * /
define ( 'DB_PASSWORD', 'password');
Step four: Copy the configuration file to the web root directory:
rsync -avP ../wordpress/ / var / www / html /
j ht (see this command do not understand this article http://www.linuxidc.com/Linux/2016-01/127841.htm)
mkdir -p wp-content / upload
chown -R www-data: / var / www / html / * (the user name of the file where their user rights should talk to your Nginx consistent with the username)
It should be noted that if rsync back catalog with wordpress / directory then copy the following files to the html directory of all, if it is wordpress, do not have that /, is a copy workdpress directory to the html directory, complete the two concepts.
Step Five: Nginx configuration file:
cp / etc / nginx / sites-available / default / etc / nginx / sites-available / wordpress
vi / etc / nginx / sites-available / wordpress
Changes made as shown in red font:
server {
listen 80 default_server;
listen [::]: 80 default_server ipv6only = on;
root / var / www / html;
index index.php index.html index.htm;
server_name your_domain.com;
location / {
# Try_files $ uri $ uri / = 404;
try_files $ uri $ uri / /index.php?q=$uri&$args;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root / usr / share / nginx / html;
}
location ~ .php $ {
try_files $ uri = 404;
fastcgi_split_path_info ^ (/.+) $ (+ php..);
fastcgi_pass unix: /var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
Code changed to bash format when it removed the red label, change the place is the root directory points to / var / www / html, the search index to search for index.php, change the server_name, change location / try_files way.
Then create a soft link to the site-enabled, remove the default default, restart Nginx and php5.
ln -s / etc / nginx / sites-available / wordpress / etc / nginx / sites-enabled /
rm / etc / nginx / sites-enabled / default
service nginx restart
service php5-fpm restart
Step Six: Web-based configuration page WordPress:
Enter your domain name or ip address, open the initial installation of WordPress |
|
|
|