1. 程式人生 > >伺服器(centos7)上安裝部署gitlab伺服器 簡單案例

伺服器(centos7)上安裝部署gitlab伺服器 簡單案例

我這裡使用的是centos 7 64bit,我試過centos 6也是可以的!1. 安裝依賴軟體yum -y install policycoreutils openssh-server openssh-clients postfix2.設定postfix開機自啟,並啟動,postfix支援gitlab發信功能systemctl enable postfix && systemctl start postfix3.下載gitlab安裝包,然後安裝centos 6系統的下載地址:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6centos 7系統的下載地址:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7我的是centos7,所以我在https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7中找了個gitlab8.0.0版本,建議下載一個比較新的版本,我這裡選了一個比較舊的版本僅僅是實驗下載rpm包並安裝:wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-8.0.0-ce.0.el7.x86_64.rpmrpm -i gitlab-ce-8.0.0-ce.0.el7.x86_64.rpm4.修改gitlab配置檔案指定伺服器ip和自定義埠:
vim  /etc/gitlab/gitlab.rb退出並儲存ps:注意這裡設定的埠不能被佔用,預設是8080埠,如果8080已經使用,請自定義其它埠,並在防火牆設定開放相對應得埠5.重置並啟動GitLab執行:gitlab-ctl reconfiguregitlab-ctl restart複製程式碼
ok: run: gitlab-git-http-server: (pid 3922) 1s
ok: run: logrotate: (pid 3929) 0s
ok: run: nginx: (pid 3936) 1s
ok: run: postgresql: (pid 3941) 0s
ok: run: redis: (pid 
3950) 0s ok: run: sidekiq: (pid 3955) 0s ok: run: unicorn: (pid 3961) 1s
複製程式碼

提示“ok: run:”表示啟動成功

6.訪問 GitLab頁面如果沒有域名,直接輸入伺服器ip和指定埠進行訪問初始賬戶: root 密碼: 5iveL!fe第一次登入修改密碼6.設定gitlab發信功能,需要注意一點:發信系統用的預設的postfix,smtp是預設開啟的,兩個都啟用了,兩個都不會工作。我這裡設定關閉smtp,開啟postfix關閉smtp方法:vim /etc/gitlab/gitlab.rb找到#gitlab_rails['smtp_enable'] = true 改為 gitlab_rails['smtp_enable'] = false修改後執行gitlab-ctl reconfigure另一種是關閉postfix,設定開啟smtp,相關教程請參考官網https://doc.gitlab.cc/omnibus/settings/smtp.html測試是否可以郵件通知:登入並新增一個使用者,我這裡使用qq郵箱新增一個使用者
登入qq郵箱,可以收到郵件通知(如果收不到,請檢視垃圾郵箱或者檢查郵件是否被攔截並刪除,如果有請新增到白名單並刪除使用者再重新新增使用者就可以收到了,否則請檢查郵件日誌並做好相關設定)報錯處理:一.登入502報錯一般是許可權問題,解決方法:chmod -R 755 /var/log/gitlab如果還不行,請檢查你的記憶體,安裝使用GitLab需要至少4GB可用記憶體(RAM + Swap)! 由於作業系統和其他正在執行的應用也會使用記憶體, 所以安裝GitLab前一定要注意當前伺服器至少有4GB的可用記憶體. 少於4GB記憶體會出現各種詭異的問題, 而且在使用過程中也經常會出現500錯誤.二.gitlab-ctl reconfigure 報錯n itdb: could not obtain information about current user: Permission denied Error executing action `run` on resource 'execute[/opt/gitlab/embedded/bin/initdb -D /var/opt/gitlab/postgresql/data -E UTF8]'根據報錯資訊大概鎖定使用者的許可權問題,安裝gitlab-ce會自動新增使用者四個使用者:gitlab-www:x:497:498::/var/opt/gitlab/nginx:/bin/falsegit:x:496:497::/var/opt/gitlab:/bin/shgitlab-redis:x:495:496::/var/opt/gitlab/redis:/bin/nologingitlab-psql:x:494:495::/var/opt/gitlab/postgresql:/bin/shgoogle和百度都搜尋不到解決方法,既然出錯提示到許可權問題,那麼按照這個方向去查就不會有問題,後來查了檔案/etc/passwd的許可權是600,給予644許可權後,成功解決報錯問題