linux下mysql安裝、授權、建立使用者、連線navicat、連線entity

海宏软件發表於2024-07-06

1.linux下安裝mysql:

sudo apt-get update
sudo apt-get install mysql-server
sudo systemctl start mysql
sudo mysql_secure_installation  #這一步不是必須的,甚至有害的

2.授權

use mysql;
update user set host='%'where user='root';flush privileges;
grant all privileges on *.* to 'root'@'名';

3.建立使用者

3.1登入root賬號

mysql -uroot -p666666 --uroot中root為登入使用者, -p666666中666666為登入密碼

3.2建立使用者 


create user haihong@'%' identified by '666666';

4.檢視檢索mysqluser

select  user ,host from  user

 

5.navicat連線

相關文章