我尝试使用ldapmodify将passwordMustChange属性添加到特定用户testUser01:
class Declaration < ApplicationRecord
has_attachment :facture, accept: [:pdf]
validates_size_of :facture, maximum: 15.megabytes, message: "Le fichier doit être inférieur à 15 megabytes"
validates :facture, presence: true
end
但是我遇到了错误:
ldapmodify -D "cn=directory manager" -w password -h localhost -p 389
dn: uid=testUser01,ou=internal,o=company,c=gr
changetype:modify
add: passwordMustChange
passwordMustChange: on
是否有一种简单的方法可以将passwordMustChange属性启用到现有架构?