0

我正在努力在 Shippable 上建立一个 CI 环境。我现在有一个测试数据库,我需要针对它运行我的迁移,但是我收到一个对我来说没有意义的错误

正在执行的构建步骤是这样的:

(cd www && NODE_ENV=test knex --knexfile ./config/knexplus.js migrate:latest)

输出是这样的:

Working directory changed to ~/src/github.com/org/api/www/config
Using environment: test
Knex:warning - Pool2 - Error: Pool was destroyed
Knex:Error Pool2 - Error: ER_DBACCESS_DENIED_ERROR: Access denied for user ''@'localhost' to database 'my_test'
Knex:Error Pool2 - Error: ER_DBACCESS_DENIED_ERROR: Access denied for user ''@'localhost' to database 'my_test'
Error: Pool was destroyed

不要误会我的意思,我理解这个信息,但不是我为什么收到它。在运行迁移之前,我有构建转储knexplus.js文件内容:

(cd www && cat ./config/knexplus.js)
  'use strict';

  exports.vagrant = exports.staging = exports.production = {
      client: 'mysql',
      connection: {
          host: '127.0.0.1',
          port: '3306',
          user: 'shippable',
          password: '',
          database: 'mine',
          timezone: 'UTC',
          charset: 'utf8',
          debug: false
      },
      migrations: {
          tableName: '_migrations',
          directory: '../db/migrations'
      },
      seeds: {
          directory: '../db/seeds'
      }
  };

  exports.test = {
      client: 'mysql',
      connection: {
          host: '127.0.0.1',
          port: '3306',
          user: 'shippable',
          password: '',
          database: 'my_test',
          timezone: 'UTC',
          charset: 'utf8',
          debug: false
      },
      migrations: {
          tableName: '_migrations',
          directory: '../db/migrations'
      },
      seeds: {
          directory: '../db/seeds'
      }
  };

我注意到错误消息似乎表明我们正在获取正确的配置,因为它引用了my_test数据库,但是用户名和主机错误。

知道我在这里可能缺少什么吗?

4

1 回答 1

0

我最终输入了支持票并得到了以下回复:

新默认映像中的数据库没有“可交付”用户,因此 MySQL 注意到有人试图以不存在的用户身份连接,并尝试查看您是否可以在没有用户名的情况下进行连接。您可以通过在连接前添加mysql -e "GRANT ALL ON *.* TO shippable@localhost IDENTIFIED BY ''; FLUSH PRIVILEGES;"到您shippable.yml的部分来创建可交付用户,也可以以 root 用户身份连接。ci

我当时正在阅读的所有文档都有shippable用户。第一步是找到正确的文档,我猜。

于 2016-04-08T10:45:45.033 回答