SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) symfony2

匿名 (未验证) 提交于 2019-12-03 08:30:34

问题:

When I try to login I get an error:

SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES)

parametrs.yml:

This file is auto-generated during the composer install

parameters:     database_driver: pdo_mysql     database_host: localhost     database_port: null     database_name: sgce     database_user: root     database_password: mikem     mailer_transport: smtp     mailer_host: 127.0.0.1     mailer_user: null     mailer_password: null     locale: en     secret: ThisTokenIsNotSoSecretChangeIt 

My OS is Debian

Thanks for your help.

[mysqld_safe] socket      = /var/run/mysqld/mysqld.sock nice        = 0  [mysqld] # # * Basic Settings # #skip-grant-tables user        = mysql pid-file    = /var/run/mysqld/mysqld.pid socket      = /var/run/mysqld/mysqld.sock port        = 3306 basedir     = /usr datadir     = /var/lib/mysql tmpdir      = /tmp lc-messages-dir = /usr/share/mysql skip-external-locking # # Instead of skip-networking the default is now to listen only on # localhost which is more compatible and is not less secure. #bind-address       = 127.0.0.1 bind-address        = 10.1.4.3 

回答1:

This is due to your mysql configuration. According to this error you are trying to connect with the user 'root' to the database host 'localhost' on a database namend 'sgce' without being granted access rights.

Presuming you did not configure your mysql instance. Log in as root user and to the folloing:

CREATE DATABASE sgce;  CREATE USER 'root'@'localhost' IDENTIFIED BY 'mikem'; GRANT ALL PRIVILEGES ON sgce. * TO 'root'@'localhost'; FLUSH PRIVILEGES; 

Also add your database_port in the parameters.yml. By default mysql listens on 3306:

database_port: 3306 


回答2:

database_password: password would between quotes: " or '.

like so:

database_password: "password"



回答3:

'default' => env('DB_CONNECTION', 'mysql'), 

add this in your code



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!