標籤:cal find admin 解密 重新整理 base exit table 密碼登入
#登入
mysql -uroot -p123
#查看使用者
select user();
#退出
quit
exit
\q
#查看協助資訊
help create user;
#建立帳號
create user ‘egon‘@‘192.168.11.*‘ identified by ‘123‘;
create user ‘egon‘@‘192.168.11.1‘ identifled by ‘123‘;
create user ‘egon‘@‘%‘ indenrified by ‘123‘;
#授權
grant all privileges
grant all on db1.t1 to ‘egon‘@‘%‘;
grant all on *.* to ‘egon‘@‘%‘;
重新整理
flush privileges;
#建立帳號同時授權
grant all on *.* to ‘djj‘@‘%‘ identified by ‘123‘;
flush privileges;
#遠端連線mysql
show databases;
#修改密碼
命令列》mysqladmin -uroot -p‘123‘ password 123
命令列》\mysql -uroot -p123
#破解密碼
殺死mysql服務
>tskill |findstr mysql
>tskill mysqld
>tskill -f /PID 5320
>mysql --skip-grant-tables #跳過授權表啟動
mysql>update mysql.user set password =password(‘‘)where user=‘root‘ and host=‘localhost‘;
mysql >flish privileges;
tskill mysqld
tasklist |findstr mysql
mysqld
以新密碼登入
mysql基本使用