mysql基本使用

來源:互聯網
上載者:User

標籤: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基本使用

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.