gpt4 book ai didi

php - 无法迁移 Pagodabox 项目的数据库

转载 作者:行者123 更新时间:2023-11-30 00:10:39 25 4
gpt4 key购买 nike

我正在关注 Tutsplus 上 Laravel Essentails 类(class)的实践项目。我在 PagodaBox 上创建了一个应用程序并将其克隆到我的本地系统中。之后,我从 https://github.com/JeffreyWay/Laravel-4-Generators 安装 Laravel-4-Generator并为我的项目生成了资源:模型、 View 、 Controller 、数据库种子等。接下来,我尝试运行

php artisan migrate:install snippets

但我收到以下错误:

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

我不知道这里的宅基地用户是什么。这是我这个项目的数据库文件

'default' => 'mysql',
'connections' => array(

'sqlite' => array(
'driver' => 'sqlite',
'database' => __DIR__.'/../database/production.sqlite',
'prefix' => '',
),

'mysql' => array(
'driver' => 'mysql',
'host' => isset($_SERVER['DB1_HOST']) ? $_SERVER['DB1_HOST'] : 'localhost',
'database' => isset($_SERVER['DB1_NAME']) ? $_SERVER['DB1_NAME'] : 'snippets',
'username' => isset($_SERVER['DB1_USER']) ? $_SERVER['DB1_USER'] : 'root',
'password' => isset($_SERVER['DB1_PASS']) ? $_SERVER['DB1_PASS'] : '',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
),

这是我检查 'homestead'@'localhost' 拨款时的结果:

mysql> SHOW GRANTS FOR 'homestead'@'localhost';
+---------------------------------------------------------------------------------------------------------------------------------------------+
| Grants for homestead@localhost |
+---------------------------------------------------------------------------------------------------------------------------------------------+
| GRANT ALL PRIVILEGES ON *.* TO 'homestead'@'localhost' IDENTIFIED BY PASSWORD '*A4B6157319038724E3560894F7F932C8.......F' WITH GRANT OPTION |
+---------------------------------------------------------------------------------------------------------------------------------------------+

P/S:我已经在 mysql 中创建了片段数据库,并且我是 Ubuntu 14.04 机器。有谁之前经历过这个吗。我该怎么办,因为我不明白这里的错误是什么。

最佳答案

查看创建的用户:

mysql> select user,host from mysql.user;
+------+----------------------+
| user | host |
+------+----------------------+
| root | % |
| root | 127.0.0.1 |
| root | ::1 |
| root | imac.de.yadira.local |
| | localhost |
| root | localhost |
| | mor-mac.local |
+------+----------------------+
7 rows in set (0.00 sec)

复制 imac.de.yadira.local 并替换主机名,在我的例子中是 mor-mac.local

$env = $app->detectEnvironment(array(

'local' => array('imac.de.yadira.local'),

));

现在运行:

mor-mac:resposive yadira$ php artisan migrate:install
Migration table created successfully.

关于php - 无法迁移 Pagodabox 项目的数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24097427/

25 4 0
文章推荐: php - 在链接到数据库行中 id 的 URL 上使用 $_get
文章推荐: javascript - 从 HTML