0
我的團隊已經在rails應用程序上設置了我的ruby以與devise ldap一起工作。每當用戶第一次登錄時,它就會在用戶模型中創建一個新條目並且工作得很好。但每當已經在數據庫嘗試登錄它的用戶存在的用戶提供了以下錯誤:Rails在Devise :: SessionsController中創建LDAP錯誤:NoMethodError#create
NoMethodError in Devise::SessionsController#create
undefined method `to' for nil:NilClass
通過觀察服務器控制檯,好像它是在這條SQL語句失敗:
SELECT `users`.* FROM `users` WHERE `users`.`username` = 'jDoe' LIMIT 1
我認爲服務器沒有得到該查詢的結果。
但每當我運行在Ruby控制檯相同的SQL語句,它給出正確的結果
(嘗試登錄用戶的記錄)下面是我的一些色器件CONFIGS的。我是新設計和紅寶石(我也沒有安裝設備),所以讓我知道如果你需要其他配置文件來調試這個問題。
初始化/ devise.rb
Devise.setup do |config|
config.ldap_create_user = true
config.ldap_update_password = false
config.mailer_sender = "****"
require 'devise/orm/active_record'
config.authentication_keys = [ :username ]
config.case_insensitive_keys = [ :email ]
config.strip_whitespace_keys = [ :email ]
config.skip_session_storage = [:http_auth]
config.stretches = Rails.env.test? ? 1 : 10
config.reconfirmable = true
config.password_length = 8..128
config.sign_out_via = :delete
end
ldap.yml
authorizations: &AUTHORIZATIONS
group_base: ou=groups,dc=test,dc=com
required_groups:
- cn=admins,ou=groups,dc=test,dc=com
- cn=users,ou=groups,dc=test,dc=com
- ["moreMembers", "cn=users,ou=groups,dc=test,dc=com"]
require_attribute:
objectClass: inetOrgPerson
authorizationRole: postsAdmin
development:
host: ****
port: 636
attribute: uid
base: ou=People,dc=***,dc=com
admin_user: cn=admin,dc=test,dc=com
admin_password: admin_password
ssl: true
test:
host: localhost
port: 3389
attribute: cn
base: ou=people,dc=test,dc=com
admin_user: cn=admin,dc=test,dc=com
admin_password: admin_password
ssl: simple_tls
production:
host: localhost
port: 636
attribute: cn
base: ou=people,dc=test,dc=com
admin_user: cn=admin,dc=test,dc=com
admin_password: admin_password
ssl: start_tls
user.rb
class User < ActiveRecord::Base
devise :ldap_authenticatable, :rememberable, :trackable
attr_accessible :name, :cell, :email, :pref, :type, :username, :password, :password_confirmation, :remember_me
end
任何人都知道這一點? Iv也遇到了同樣的問題。 – Cheyne 2013-05-18 20:55:39