1、创建用户
create user wordpress@localhost identified by '123456';
2、创建数据库
create database wordpress;
3、赋予用户数据库权限
grant all on wordpress.* to 'wordpress'@'localhost' with grant option;
4、安装
wp-content 给予 写入权限,上传图片写入此目录
1、创建用户
create user wordpress@localhost identified by '123456';
2、创建数据库
create database wordpress;
3、赋予用户数据库权限
grant all on wordpress.* to 'wordpress'@'localhost' with grant option;
4、安装
wp-content 给予 写入权限,上传图片写入此目录
MariaDB安装wordpress
https://www.hao.kim/archives/11.html