mysql 忘記root密碼 以及 建立新使用者

2021-10-03 05:23:00 字數 938 閱讀 8561

use mysql

//允許指定ip連線

create user '使用者名稱'@'localhost' identified by '密碼';

//允許所有ip連線(%表示所有ip)

create user 'demo'@'%' identified by 'demo';

grant all privileges on 資料庫名.表名 to '使用者名稱'@'指定ip' identified by '密碼' ;

// *表示所有

grant all privileges on *.* to 'demo'@'%' identified by 'demo' ;

// 設定所有許可權

grant all privileges on *.* to '使用者名稱'@'指定ip' identified by '密碼' with grant option;

// 設定select許可權

grant select on *.* to '使用者名稱'@'指定ip' identified by '密碼' with grant option;

// 其他許可權: select, insert, delete, update用都好隔開

grant select,insert on *.* to '使用者名稱'@'指定ip' identified by '密碼' with grant option;

// 取消使用者select許可權

revoke select on what from '使用者名稱';

drop user username@localhost;

flush privileges;

mysql忘記root密碼

1.以系統管理員身份登陸系統。2.開啟cmd net start 檢視mysql是否啟動。啟動的話就停止net stop mysql.3.我的mysql安裝在d usr local mysql4 bin下。4.跳過許可權檢查啟動mysql.d usr local mysql4 bin mysqld ...

mysql忘記root密碼

1.開啟dos視窗,關閉正在執行的mysql net stop mysql。2.開啟dos視窗,轉到mysql bin目錄 cd c program files x86 mysql mysql server 5.1 bin。3.輸入mysqld skip grant tables回車。4.再開乙個新...

mysql忘記root密碼

第一步 執行如下命令,停止mysql服務 net stop mysql 第二步 啟動mysql 進入到mysql的安裝目錄bin,找到mysqld.exe 或mysqld nt.exe 執行 mysqld.exe skip grant tables 或mysqld nt skip grant tab...