가비엘
'GitLab admin 패스워드 변경하기' 태그의 글 목록

GitLab admin 패스워드 변경하기

개발팁/개발 팁

GitLab root 초기패스워드 변경 inittal_root_password, GitLab rails console

상황 gitlab root 초기 비밀번호를 잃어버렸다. 처리방법 inittal_root_password 파일로 확인 docker로 설치시 /etc/gitlab 폴더를 volume으로 잡아줬다면 inittal_root_password 파일을 열어서 안에 password 가 뭔지 확인하거나, docker 볼륨을 안잡아줬다면 shell로 docker 에 접속해서 inittal_root_password 를 열어보면된다. (docker ... /bin/bash로 gitlab 컨테이너에 들어가서 cat 명령으로 initial_root_password 파일을 출력해서 Password 에 적힌 문구로 패스워드를 확인한다.) PS C:\Users\Administrator> docker exec -it gitlab /bi..