1. 程式人生 > >CentOS navicat 連線mysql時報錯1045

CentOS navicat 連線mysql時報錯1045

問題描述:

1045-Access denied for user 'root'@'localhost'(using password: YES)

方法:

作業系統為CentOS系列

注意:一定要重啟mysql服務或者重啟伺服器

1、針對一對一使用者

# mysql -uroot -p MySQL [(none)]> grant all privileges on db_name.* to [email protected]’%’ identified by ‘db_pass’; #授權語句,特別注意有分號 MySQL [(none)]> flush privileges; MySQL [(none)]> exit; #退出資料庫控制檯,特別注意有分號

重啟MYSQL:service mysqld restart

2、針對總帳號root  即一個帳號管理所有資料庫

grant all privileges on * to [email protected]’%’ identified by ‘dsfdfggdg41;