Quantcast
Channel: Layer8 » MySQL
Viewing all articles
Browse latest Browse all 20

「ERROR 1045 connect failed…Access denied for user(using password: YES)」の対処法(symfony)

$
0
0

以下のようなエラーがでてsymfonyがうまく作動しないときの解決法です。

■エラー文

[wrapped: connect failed [Native Error: Access denied for user 'dbuser'@'localhost' (using password: YES)] [User Info: Array]]

または

ERROR 1045 (28000): Access denied for user 'okauser'@'localhost' (using password: YES)

■原因

コンソールからデータベース接続する時にパスワードが間違っている。

■解決策
1.mysqlコマンド等で使っているユーザ名とパスワードをもう一度確認する。
2.mysql側で現在のユーザがテーブルにアクセスする権限を持っているか確認する。
3.config/schema.ymlのパスワードが間違っていないか確認する。

all:
  propel:
    class:          sfPropelDatabase
    param:
      dsn:          mysql://ユーザ名:パスワード@localhost/DB名

ERROR 1044 (42000) connect failed…access denied for userの対処法も合わせてご確認下さい。


Viewing all articles
Browse latest Browse all 20

Trending Articles