记录一下数据库的操作命令行:
打开数据库
mysql.server start
关闭数据库
mysql.server stop
使用数据库:
mysql -u root -p
加密方式不同导致链接不上数据库:
// 进入mysql 输入密码例如:123456
mysql -u root -p
// 1.执行语句 alter user 'root'@'localhost' identified with mysql_native_password by 密码;
mysql> alter user 'root'@'localhost' identified with mysql_native_password by '123456';
Query OK, 0 rows affected (0.43 sec)
// 2.再执行语句 flush privileges;
mysql> flush privileges;
Query OK, 0 rows affected (0.05 sec)
//3.成功后 退出
mysql> quit
Bye