GitLab root 패스워드 변경

GitLab의 root 계정으로 로그인 못할 경우, 패스워드의 강제 변경이 필요합니다.

이때, 아래의 절차에 따라 진행을 합니다.

 

gitlab-rails console -e production

잠시 대기 하면 gitlab-rails console에 연결됩니다.

 

user = User.where(id: 1).first user.password='변경할 패스워드' user.password_confirmation='변경할 패스워드' user.save

변경할 패스워드는 8자 이상이어야 합니다.