ubuntu上安装mysql

执行命令apt install mysql-server安装mysql

mysql默认是没有密码的,执行mysql -u root就能连接上了

如果我要给wordpress提供mysql,那么我一般这样做

1. 创建用户wp

create user ‘wp’@’localhost’ identified with mysql_native_password by ‘111111’;

2. 创建数据库wordpress

creat database wordpress;

3. 赋权给wp

grant all privileges on wordpress.* to ‘wp’@’localhost’;


评论

《“ubuntu上安装mysql”》 有 1 条评论

  1. […] 参考ubuntu配置php环境和ubuntu上安装mysql […]

回复 ubuntu上搭建wordpress – 申唐 取消回复

您的邮箱地址不会被公开。 必填项已用 * 标注