Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gitlab login error: invalid email or password [closed]

Tags:

gitlab

I installed gitlab on my homeserver, the server is running. I can access the login page but I can't login.

[email protected].
5iveL!fe

Error: invalid email or password.

What could be the problem?

like image 753
Adrian Avatar asked Jan 24 '13 01:01

Adrian


1 Answers

/home/gitlab/github/app/observers/user_observer.rb

Notify.delay.new_user_email(user.id, user.password) 

to change:

Notify.new_user_email(user.id, user.password)

Run:

[email protected] ~/gitlab/github $ bundle exec rake db:seed_fu RAILS_ENV=production
like image 121
Menht Avatar answered Nov 06 '22 22:11

Menht