1. 程式人生 > >1、mysql登入、退出、重啟密碼檢視、修改等資料庫基礎操作

1、mysql登入、退出、重啟密碼檢視、修改等資料庫基礎操作

1 工作環境

cmd命令視窗

2 登入:

mysql -hlocalhost -uroot -p

3 退出

  exit

4 關閉和重新資料庫(需要退出資料庫環境)

net stop mysql
net start mysql

5 密碼檢視

select user,host,authentication_string from user;

6、密碼修改

alter user 'root'@'localhost' identified with mysql_native_password BY '123123'; 

修改後密碼為  root

7、無密碼登陸

實測,在mysql8系統下,用mysqld --console --skip-grant-tables --shared-memory可以無密碼啟動服務

服務啟動後,以空密碼登入系統

mysql.exe -u root