本文仅翻译安装过程中的关键步骤,想要了解其他细节的童鞋请访问原文。
0x00:为wordpress创建数据库和用户
连接mysql:
mysql -u root -p
创建名为“wordpress”的数据库
CREATE DATABASE wordpress;
为wordpress创建一个单独的mysql账户
CREATE USER wordpressuser@localhost IDENTIFIED BY 'password';
赋予账户操作权限:
GRANT ALL PRIVILEGES ON wordpress.* TO wordpressuser@localhost;
更新:
FLUSH PRIVILEGES
完成。
0x01:下载wordpress
选择一个用来存放下载文件的文件夹:
例如:
cd Downloads/
下载wordpress:
wget http://wordpress.org/latest.tar.gz
解压下载下来的文件(latest.tar.gz):
tar xzvf latest.tar.gz
0x02:配置wordpress
进入解压后的wordpress目录:
cd ~/wordpress
使用官方提供的例子作为配置文件:
cp wp-config-sample.php wp-config.php
编辑文件wp-config.php,修改如下几个地方为对应的值
. . .
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', '<span style="color:#FF6666;">wordpress</span>');
/** MySQL database username */
define('DB_USER', '<span style="color:#FF6666;">wordpressuser</span>');
/** MySQL database password */
define('DB_PASSWORD', '<span style="color:#FF6666;">password</span>');
. . .
把wordpress复制到nginx的root目录(默认为/usr/share/nginx/html)下:
sudo rsync -avP ~/wordpress/ /usr/share/nginx/html/
完成:访问localhost。
原文How To Install WordPress with Nginx on Ubuntu 14.04:https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-with-nginx-on-ubuntu-14-04
如何在Ubuntu 14.10上安装WordPress?:http://www.linuxdiyf.com/linux/10192.html
怎样用WPScan,Nmap和Nikto扫描和检查一个WordPress站点的安全性:http://www.linuxdiyf.com/linux/11706.html
在CoreOS下部署WordPress实例教程:http://www.linuxdiyf.com/linux/10518.html
XUbuntu 15.04下HHVM Nginx环境搭建:http://www.linuxdiyf.com/linux/13514.html
ubuntu15.04手动安装nginx1.93并配置php:http://www.linuxdiyf.com/linux/13151.html