SQLSTATE [HY000] [1045]拒绝用户访问权限' @' localhost'

时间:2018-02-12 07:08:27

标签: php mysql laravel-5 xampp

我让php artisan make:auth并尝试注册为新用户然后我收到错误。我正在使用Xampp for MySQL并创建一个数据库名称' pari'并设置用户:root和密码:root。在cmd上启动xampp apache和SQL server以及PHP artisan后,我每次都会得到相同的错误。

  

SQLSTATE [HY000] [1045]拒绝访问用户' root' @' localhost' (使用密码:是)(SQL:选择count(*)作为users的聚合,其中email = avinashjk1620@gmail.com)

第1步:我更改了.env文件

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=pari
DB_USERNAME=root
DB_PASSWORD=root

并使用php artisan serve重新启动,但它再次给出了该错误。

第2步:我已将config \ database.php更改为 -

 'mysql' => [
        'driver' => 'mysql',
        'host' => env('DB_HOST', '127.0.0.1'),
        'port' => env('DB_PORT', '3306'),
        'database' => env('DB_DATABASE', 'pari'),
        'username' => env('DB_USERNAME', 'root'),
        'password' => env('DB_PASSWORD', 'root'),
        'unix_socket' => env('DB_SOCKET', ''),
        'charset' => 'utf8mb4',
        'collation' => 'utf8mb4_unicode_ci',
        'prefix' => '',
        'strict' => true,
        'engine' => null,
    ],

但它再次给出了同样的错误。 第3步:我试过

  php artisan cache:clear 
  php artisan config:clear

但又得到同样的错误。

步骤4:从phpmyadmin和.env以及database.php中删除密码后,我收到新错误 -

  SQLSTATE[42S02]: Base table or view not found: 1146 Table 'pari.users' doesn't exist (SQL: select count(*) as aggregate from `users` where `email` = avinashjk1620@gmail.com)

我如何修复此错误请帮助我。

5 个答案:

答案 0 :(得分:1)

确保正确设置所有字段,尤其是密码。

    $this->server = "localhost";
    $this->username = "root";
    $this->password = "";
    $this->dbName = "dbone";
    $this->charset = "utf8mb4";

答案 1 :(得分:1)

如果在Cpanel上与服务器的连接仍然存在问题,我可以通过将密码放在“”引号中来解决,并确保一切正常响应

  

DB_CONNECTION = mysql DB_HOST = 127.0.0.1 DB_PORT = 3306 DB_DATABASE = sppro   DB_USERNAME = sppro DB_PASSWORD =“ sppro123#”

我能够登录到文件

答案 2 :(得分:0)

更改凭证后,请执行以下操作

php artisan config:clear 
restart php artisan

答案 3 :(得分:0)

确保您的数据库是使用utf8mb4_unicode_ci排序规则创建的。这应该可以解决您的1071错误。

或者,您可以在Schema::defaultStringLength(191);中的boot()方法中添加app\Providers\AppServiceProvider.php

修改:请务必添加use Illuminate\Support\Facades\Schema;

答案 4 :(得分:0)

只需更改 .env 文件,不要更改 config/database.php 文件。

DB_CONNECTION=mysql
DB_HOST=127.0.0.1 or IP address
DB_PORT=3306
DB_DATABASE='your database name'
DB_USERNAME='your username'
DB_PASSWORD='your password'

它对我有用!