从mysql客户端快速创建数据库和数据库用户

有时,在没有安装phpmyadmin,或开启mysql远程访问的功能时,需要使用mysql命令快速创建数据库和数据库用户。

环境:Debian8,mysql5.5。

步骤:

1.在Shell里以root的用户名登录到本地的mysql(在提示Enter password后请输入正确的密码):
mysql -uroot -p

2.成功连接后,会出现 mysql> 的命令窗口
bbs-aliyun-dongshan3-294448-1.png

3.创建wordpress的数据库:
create database wordpress;

4.创建数据库用户wpuser,且设置密码为 wpmima888:
create user 'wpuser'@'localhost' identified by 'wpmima888';

5.为wpuser分配数据库wordpress的所有权限:
grant all privileges on wordpress.* to 'wpuser'@'localhost' with grant option;
bbs-aliyun-dongshan3-294448-2.png

6.在站点程序中,如wordpress安装过程中,就可以输入上边设置好的数据库连接信息了 bbs-aliyun-dongshan3-294448-3.png

参考:

  1. http://www.authpuppy.org/doc/Getting_Started
  2. http://dev.mysql.com/doc/refman/5.7/en/adding-users.html

标签: none

添加新评论