mysql 床架新資料庫並分配使用者許可權

流浪2024發表於2024-12-07

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';

相關文章