首先需要用root账户进入mysql
mysql - u root -p
以下命令创建了一个名为test的新数据库,用户名相同,可以完全访问该数据库:
mysql> create database test character set utf8 collate utf8_bin;
mysql> create user 'test'@'localhost' identified by '<db-password>';
mysql> grant all privileges on test.* to 'test'@'localhost';
mysql> flush privileges;
mysql> quit;
网友评论