1.设置 ubuntu 账户密码
sudo passwd ubuntu
输入以上命令后,会提示输入密码(二次)。
2.配置 wordpress 文件 wp-config.php
/**
* use ftp to install and upgrade plugins and so on.
*/
define('FS_METHOD', 'direct');
define('FTP_BASE', '/usr/share/nginx/html/');
define( 'FTP_USER', 'ubuntu' );
define( 'FTP_PASS', 'xxxxxxxxxx' );
define( 'FTP_HOST', '127.0.0.1' );
ubuntu14.04系统下在Nginx中安装wordpress:http://www.linuxdiyf.com/linux/13762.html
如何在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