13

我按照官方教程

我在我的 Gemfile 中注释掉了 sqlite3 以及以下几行:

gem 'mongoid', '~> 4', github: 'mongoid/mongoid'
gem 'bson_ext'

但是,我一直收到 Specified 'sqlite3' for database adapter, but the gem is not loaded. Add gem "sqlite3" to your Gemfile.

原因似乎是 database.yml 仍然将 sqlite 列为数据库。我应该如何让 Rails 使用生成的 mongoid.yml?用 mongoid.yml 替换 database.yml 的内容似乎没有用 - 我明白了

ActiveRecord::AdapterNotSpecified: database configuration does not specify adapter错误。

它与 Rails 4 不兼容还是我遗漏了一些简单的东西?

编辑:我想我越来越暖和了。我已将适配器添加为“mongoid”。这是我的 database.yml 现在的内容:

development:
  adapter: 'mongoid'
  # Configure available database sessions. (required)
  sessions:
    # Defines the default session. (required)
    default:
      # Defines the name of the default database that Mongoid can connect to.
      # (required).
      database: xboxie
      # Provides the hosts the default session can connect to. Must be an array
      # of host:port pairs. (required)
      hosts:
        - localhost:27017
      options:
        # Change whether the session persists in safe mode by default.
        # (default: false)
        # safe: false

        # Change the default consistency model to :eventual or :strong.
        # :eventual will send reads to secondaries, :strong sends everything
        # to master. (default: :eventual)
        # consistency: :eventual

        # How many times Moped should attempt to retry an operation after
        # failure. (default: 30)
        # max_retries: 30

        # The time in seconds that Moped should wait before retrying an
        # operation on failure. (default: 1)
        # retry_interval: 1
  # Configure Mongoid specific options. (optional)
  options:
    #
test:
  sessions:
    default:
      database: xboxie_test
      hosts:
        - localhost:27017
      options:
        consistency: :strong
        # In the test environment we lower the retries and retry interval to
        # low amounts for fast failures.
        max_retries: 1
        retry_interval: 0


# # SQLite version 3.x
# #   gem install sqlite3
# #
# #   Ensure the SQLite 3 gem is defined in your Gemfile
# #   gem 'sqlite3'
# development:
#   adapter: sqlite3
#   database: db/development.sqlite3
#   pool: 5
#   timeout: 5000

# # Warning: The database defined as "test" will be erased and
# # re-generated from your development database when you run "rake".
# # Do not set this db to the same as development or production.
# test:
#   adapter: sqlite3
#   database: db/test.sqlite3
#   pool: 5
#   timeout: 5000

# production:
#   adapter: sqlite3
#   database: db/production.sqlite3
#   pool: 5
#   timeout: 5000

产生错误:

LoadError: Could not load 'active_record/connection_adapters/mongoid_adapter'. Make sure that the adapter in config/database.yml is valid. If you use an adapter other than 'mysql', 'mysql2', 'postgresql' or 'sqlite3' add the necessary adapter gem to the Gemfile.

4

6 回答 6

13

我通过添加解决了这个问题:

Mongoid.load!(Rails.root.join("/config/mongoid.yml"))

config/intializers/mongoid.rb,按照教程。

此外,您还需要在 config/application.rb 文件中更改以下行:

require 'rails/all'

到(在 Rails 3.x 中):

require "action_controller/railtie"
require "action_mailer/railtie"
require "active_resource/railtie"
require "rails/test_unit/railtie"
# require "sprockets/railtie" # Uncomment this line for Rails 3.1+

或(在 Rails 4.x 中):

# Pick the frameworks you want:
# require "active_record/railtie"
require "action_controller/railtie"
require "action_mailer/railtie"
require "sprockets/railtie"
require "rails/test_unit/railtie"
于 2013-07-23T02:29:37.410 回答
8

我有类似的问题。通过在没有 ActiveRecord 的情况下重新创建我的应用程序来解决所有问题...

rails new app_name --skip-active-record

如上所述添加宝石并让我的 mongoid.yml 正确...

于 2013-09-22T13:23:31.300 回答
2

使用 mongo 时会出现此问题。基本上 mongo 不适合 active record 。因此,使用命令生成您的应用程序,

rails g myApp --skip-active-record

在我的情况下效果很好

于 2016-03-03T16:33:36.197 回答
1

检查您的config/database.yml. 您可能在那里指定了 sqlite3。

于 2013-07-23T01:29:00.777 回答
0

就我而言,我收到了来自 puma 的类似错误。然后我意识到在 config/puma.rb 我有:

on_worker_boot do
  # worker specific setup
  ActiveSupport.on_load(:active_record) do
    config = ActiveRecord::Base.configurations[Rails.env] ||
        Rails.application.config.database_configuration[Rails.env]
    config['pool'] = ENV['MAX_THREADS'] || 16
    ActiveRecord::Base.establish_connection(config)
  end
end

我不得不用 config/initializers/mongoid.rb 的内容替换 on_worker_boot 中的所有内容

一般来说,我认为调试它的一个好方法是在代码上搜索对 active_record 的任何引用。

于 2016-05-20T09:28:30.887 回答
0

我也遇到了同样的错误

"Could not load active_record/connection_adapters/mongoid_adapter".

我可以通过在 deveopment.rb 中注释“config.active_record.migration_error = :page_load”和在 application.rb 中注释“config.active_record.raise_in_transactional_callbacks = true”来解决它。还要确保在 database.yml 中,数据库不是在 sqlite3 中指定的,而是在 mongoid 中指定的。您还需要从 application.rb 中删除“require 'rails/all'”并将其替换为

require "action_controller/railtie"
require "action_mailer/railtie"
require "sprockets/railtie"
require "rails/test_unit/railtie"

如上述评论中所述。

于 2016-10-02T21:39:18.843 回答