yum install nginx php php-fpm php-mysql mysql-server -y
2.
将各程序设置为开机自启
chkconfig nginx on
chkconfig mysqld on
chkconfig php-fpm on
default.conf
文件,取消对 IPv6 地址的监听同时配置 Nginx,实现与 PHP 的联动。
vim /etc/nginx/conf.d/default.conf
4.
default.conf
文件server {
listen 80;
root /usr/share/nginx/html;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
index index.php index.html index.htm;
}
#error_page 404 /404.html;
#redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
#pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
修改完成后,按 “Esc” 键,输入 “:wq”,保存文件并返回。
5.
启动 Nginx。
service nginx start
service mysqld start
8.
设置 MySQL 服务器 root 用户的密码,本教程设置为 “123456”,后续步骤中需要用到此用户名和密码。
/usr/bin/mysqladmin -u root password "123456"
/etc/php.ini
文件。
/session.save_path
按字母“I”键或 “Insert” 键切换至编辑模式,将其改为 :
/var/lib/php/session
目录下所有文件的属组都改成 nginx 和 nginx。
chown -R nginx:nginx /var/lib/php/session
12.
index.php
文件:
vim /usr/share/nginx/html/index.php
13.
index.php
文件,查看环境配置是否成功:
index.html
文件。
wget https://cn.wordpress.org/wordpress-4.7.4-zh_CN.tar.gz
tar zxvf wordpress-4.7.4-zh_CN.tar.gz
17.
CREATE DATABASE wordpress;
CREATE USER user@localhost;
并为此用户设置密码“wordpresspassword”。
SET PASSWORD FOR user@localhost=PASSWORD("wordpresspassword");
为创建的用户开通数据库 “wordpress” 的完全访问权限。
GRANT ALL PRIVILEGES ON wordpress.* TO user@localhost IDENTIFIED BY 'wordpresspassword';
使用以下命令使所有配置生效。
FLUSH PRIVILEGES;
配置完成,退出 MySQL。
wp-config-sample.php
文件复制到名为wp-config.php
的文件,使用以下命令创建新的配置文件,并将原先的示例配置文件保留作为备份。
cd wordpress/
cp wp-config-sample.php wp-config.php
20.
vim wp-config.php
// ** 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', 'user');
/** MySQL database password */
define('DB_PASSWORD', 'wordpresspassword');
/** MySQL hostname */
define('DB_HOST', 'localhost');
22.
在 Web 浏览器地址栏输入 WordPress 站点的 IP 地址(云主机的公网 IP 地址,或者该地址后跟 “wordpress文件夹”),可以看到 WordPress 安装屏幕,就可以开始配置 WordPress。
至此大功告成,撒花!