1.登入資料庫
mysql -u root -p
2.建立資料庫
CREATE DATABASE test;
3.新增使用者
create user 'test'@'localhost' identified by '1234';
4.重新整理許可權,並給使用者分配資料庫許可權
use mysql; flush privileges; grant all privileges on test.* to test@'%' identified by '123456';
1.登入資料庫
mysql -u root -p
2.建立資料庫
CREATE DATABASE test;
3.新增使用者
create user 'test'@'localhost' identified by '1234';
4.重新整理許可權,並給使用者分配資料庫許可權
use mysql; flush privileges; grant all privileges on test.* to test@'%' identified by '123456';