Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Server \ Ubuntu 14.04 Install WordPress on Nginx     - CentOS7 installed MySQL (Database)

- MySQL Statistics (Database)

- After installation of Debian 6.0 do a few things first (Linux)

- RabbitMQ tutorial examples: the Hello RabbitMQ World Java realization (Linux)

- 12 novice Linux command must learn (Linux)

- Shared directory settings between Linux and Linux (Linux)

- Linux environment variable configuration and save places (Linux)

- Linux configuration startup mount: fstab file (Linux)

- Hanoi problem Java Solution (Programming)

- MongoDB in bulk timestamp change the date format (Database)

- Linux 0.12 kernel and modern kernels difference in memory management (Linux)

- iOS developers - a simple factory pattern and OC reflection (Programming)

- CentOS 6.5 installation Python3.0 (Linux)

- CentOS 7 source code to compile and install PHP5.6 Nginx1.7.9 and MySQL (LNMP build environment) (Server)

- CentOS yum install LNMP PHP5.4 version (Server)

- Terminal fun: 6 interesting Linux command-line tools (Linux)

- Install mono offline on CentOS (Server)

- Copy files between two Linux hosts (Linux)

- Install Mac OS X 10.9 systems VMware10 (Linux)

- Git bulk delete remote tag (Linux)

 
         
  Ubuntu 14.04 Install WordPress on Nginx
     
  Add Date : 2018-11-21      
         
         
         
  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
     
         
         
         
  More:      
 
- Linux partition command (Linux)
- Oracle background processes daemons (Database)
- CentOS7 install MySQL5.6.22 (Linux)
- Without Visual Studio .NET Windows application development (Programming)
- Use Markdown editor for document work under Linux (Linux)
- RHEL6.4 x86_64 build SVN service (Server)
- How to upgrade the kernel to 3.13.7 on Ubuntu / Linux Mint (Linux)
- MySQL 5.6 Open full query log (Database)
- PostgreSQL Source Customization: Online global read only (Database)
- Stucts2 values on the page and how the attribute values corresponding to the Action (Programming)
- ARP spoofing prevent Linux environment LAN (Linux)
- Docker improve safety (Server)
- How to troubleshoot error java.lang.NoSuchMethodError (Programming)
- Java-- get the reflection object information (Programming)
- Usage Linux device tree (Programming)
- Change the kernel boot sequence after CentOS 7 kernel upgrade (Linux)
- Additional SQL Server 5123 database reported error (Database)
- Java class loading order (Programming)
- Linux Shell Scripting (Programming)
- Ubuntu buffalo wzr-hp-300nh brush DD-WRT router system (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.