1. 程式人生 > >mysql 新建資料庫,新增許可權

mysql 新建資料庫,新增許可權

首先是進入資料庫

mysql -uroot -p123456;

進入mysql

use mysql;

執行:

create database newdatabase;

source /root/new.sql;

此時去連線資料庫會發現連線不上,是因為沒有給root許可權


 grant all privileges on *.* to 'root'@'%'identified by '123456' with grant option;"
grant all privileges on *.* to 'root'@'localhost'identified by '123456' with grant option;
新增完許可權,需要重新整理

 flush  privileges