mysql
CREATE DATABASE wordpress;
123456
。CREATE USER 'user'@'localhost' IDENTIFIED BY '123456';
GRANT ALL PRIVILEGES ON wordpress.* TO 'user'@'localhost' IDENTIFIED BY '123456';
ALTER USER root@localhost IDENTIFIED VIA mysql_native_password USING PASSWORD('输入您的密码');
FLUSH PRIVILEGES;
\\q
index.php
文件。rm -rf /usr/share/nginx/html/index.php
/usr/share/nginx/html/
目录,并下载与解压 WordPress。cd /usr/share/nginx/html
wget https://cn.wordpress.org/wordpress-5.0.4-zh_CN.tar.gz
tar zxvf wordpress-5.0.4-zh_CN.tar.gz
wp-config-sample.php
文件复制到wp-config.php
文件中,并将原先的示例配置文件保留作为备份。cd /usr/share/nginx/html/wordpress
cp wp-config-sample.php wp-config.php
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', '123456');/** MySQL hostname */define('DB_HOST', 'localhost');
http://域名或云服务器实例的公网 IP/wordpress 文件夹
,例如:http://192.xxx.xxx.xx/wordpress
所需信息 | 说明 |
站点标题 | WordPress 网站名称。 |
用户名 | WordPress 管理员名称。出于安全考虑,建议设置一个不同于 admin 的名称。因为与默认用户名称 admin 相比,该名称更难破解。 |
密码 | 可以使用默认强密码或者自定义密码。请勿重复使用现有密码,并确保将密码保存在安全的位置。 |
您的电子邮件 | 用于接收通知的电子邮件地址。 |
本页内容是否解决了您的问题?