gpt4 book ai didi

mysql - 拒绝用户 MySql 的访问

转载 作者:可可西里 更新时间:2023-11-01 07:55:42 25 4
gpt4 key购买 nike

问题是我的本地主机 Laravel 项目无法连接到 MySQL,我收到以下错误:

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

操作系统:macos high sierra浏览器:Chrome;MySql版本:8.0.12拉维尔版本:5.6家园版本:7.0

我尝试解决的问题:

  1. 检查是否有一个 MySql 实例正在运行 - 它正在运行。

  2. 检查 .env 文件和 config/database.php 中的凭据 - 凭据正确(Mysql root 用户密码已从安装时生成的密码更改)

  3. 我检查了我是否可以通过终端连接以仔细检查凭据是否正确 - 我可以并且它们是正确的

  4. 尝试创建一个具有所有根权限的新 MySql 用户。 - 同样的错误。

  5. 我可以在终端中运行 php artisan migrate 并创建表。我认为这很奇怪,因为该网站被拒绝了。

  6. 我完全删除了 MySql 3 次。 (遵循本指南:https://gist.github.com/vitorbritto/0555879fe4414d18569d)-同样的错误

  7. 然后我从头开始销毁 vagrant box 和 Laravel 项目并从头开始 - 同样的错误。

  8. 克制了敲打电脑的冲动。

.env(更新)

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret

亚姆:

---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox

authorize: ~/.ssh/id_rsa.pub

keys:
- ~/.ssh/id_rsa

folders:
- map: ~/Sites
to: /home/vagrant/Sites

sites:
- map: site.test
to: /home/vagrant/Sites/sitetest/public

databases:
- homestead

/etc/主机

##
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##


127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost

127.0.0.1 site.test

最佳答案

homestead 的默认密码不是something

根据 laravel 文档,它是 secret

A homestead database is configured for both MySQL and PostgreSQL out of the box. For even more convenience, Laravel's .env file configures the framework to use this database out of the box.

To connect to your MySQL or PostgreSQL database from your host machine's database client, you should connect to 127.0.0.1 and port 33060 (MySQL) or 54320 (PostgreSQL). The username and password for both databases is homestead / secret.

文档位于:https://laravel.com/docs/5.6/homestead

更新:

您还可以授予您的用户使用数据库的权限:

GRANT ALL PRIVILEGES ON database_name.* TO 'username'@'localhost';

关于mysql - 拒绝用户 MySql 的访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51903049/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com