Unable to signin after restore

I had a backup from my GitLab EE. I’ve tried to restore it and it’s done. I changed gitlab.rb and disabled LDAP we had before (now it’s unavailable). But I have no option to sign in now -

Does anybody know how to fix it?

Thank you

Problem solved with console and ApplicationSettings -

sudo gitlab-rails console
s = ApplicationSetting.find_by(password_authentication_enabled_for_web: false)
s.password_authentication_enabled_for_web = true
s.save

1 Like