在MySQL里面,如果你只是想新建一个User、一个Database。那么知道下面这几个命令就足够了:
登录MySQL: mysql -u root -p
添加数据库: create database xxxxx
添加并授权用户: grant all privileges on xxxxx.* to ‘newuser‘@‘localhost‘ identified by "password"
在MySQL里面,如果你只是想新建一个User、一个Database。那么知道下面这几个命令就足够了:
登录MySQL: mysql -u root -p
添加数据库: create database xxxxx
添加并授权用户: grant all privileges on xxxxx.* to ‘newuser‘@‘localhost‘ identified by "password"