-
설치
필요한 소프트웨어 설치
여러가지를 한꺼번에 설치 해야합니다.
# yum install curl policycoreutils openssh-server openssh-clients
# yum install postfix
GitLab 설치
# curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
# yum install gitlab-ce
# gitlab-ctl reconfigure
# iptables -I INPUT -p tcp --dport 80 -j ACCEPT
502 Whoops, GitLab is taking too much time to respond 에러가 뜰 때
해결방안 : 포트를 변경해주면 된다. 아마 포트 충돌로 인한 오류 인 것 같다. 포트를 8080에서 8081로 바꿔주니 다시 제대로 동작하였다.
# gitlab-ctl stop
# vi /etc/gitlab/gitlab.rb (change only these lines, uncomment if required)
unicorn['port'] = 8081
gitlab_git_http_server['auth_backend'] = "http://localhost:8081"
# gitlab-ctl reconfigure (to apply the changes)
# gitlab-ctl restart
'linux' 카테고리의 다른 글
Centos6.7 AND REDMINE 설치 (0) 2019.08.29 Mac에 Vagrant + VirtualBox + CentOS (0) 2019.08.29 Centos 7 + Hadoop + Zookeeper + Hbase + Pheonix 설치 (0) 2019.08.29