2021-05-12 14:32:11
快速學會CentOS設定GitLab
下載GitLab
親測: CentOS 6.5
安裝依賴包:
yum install curl policycoreutils policycoreutils-python openssh-server openssh-clients
依賴包安裝完成之後:
1: systemctl enable sshd
2: systemctl start sshd
3: yum install postfix
4: systemctl enable postfix
5: systemctl start postfix
6: firewall-cmd --permanent --add-service=http
7: systemctl reload firewalld
以上依賴安裝完之後,下載gitlab:
centos 6系統的下載地址:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6
centos 7系統的下載地址:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7
下載相對應系統的rpm包
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6/gitlab-ce-8.0.0-ce.0.el6.x86_64.rpm
安裝rpm包
rpm -i gitlab-ce-8.0.0-ce.0.el6.x86_64.rpm
安裝完成之後
vim /etc/gitlab/gitlab.rb
修改gitlab組態檔,存取IP:埠, 如果不修改預設80埠,進入檔案之後,找到
external_url # 這個變數
修改external_url變數
external_url 'http://ip:埠'
修改完成之後退出並且儲存
esc + wq
儲存之後需要更新一下修改
gitlab-ctl reconfigure
重新啟動gitlab
gitlab-ctl restart # 重新啟動
gitlab-ctl stop # 停止
gitlab-ctl start # 啟動
gitlab-ctl status # 檢視狀態
存取gitlab
輸入你在 /etc/gitlab/gitlab.rb檔案裡定義的
external_url後邊跟的ip就可以存取
設定成功之後就會出現這個頁面, 預設賬號:root, 密碼;password, 如果不對的話,請自行修改。
修改gitlab管理員賬號密碼
gitlab-rails console production
# 按下回車之後會出現
Loading production environment (Rails 4.1.1)
# 依次輸入
irb(main):001:0> user = User.where(id:1).first
irb(main):002:0> user.password='66668888' # root密碼
irb(main):003:0> user.save!
# 返回
true # 表示修改成功
Ctrl+C 可以退出了
到了這裡之後,gitlab就設定完成了,接下來就可以使用了。以上所有方法,親測,全部有效。
# 修改gitlab IP地址
vim /etc/gitlab/gitlab.rb
external_url 'ip地址'
設定完成
重置命令: gitlab-ctl reconfigure
重新啟動命令: gitlab-ctl restart
更多GitLab相關教學見以下內容:
CentOS7安裝GitLab、漢化及使用 https://www.linuxidc.com/Linux/2017-11/148223.htm
CentOS 7安裝部署GitLab伺服器 https://www.linuxidc.com/Linux/2017-06/144990.htm
CentOS 7.x上GitLab搭建詳細教學 https://www.linuxidc.com/Linux/2017-12/149766.htm
CentOS 7安裝部署GitLab伺服器 https://www.linuxidc.com/Linux/2017-06/144990.htm
CentOS 7使用Docker搭建GitLab伺服器 https://www.linuxidc.com/Linux/2018-04/151725.htm
Ubuntu 16.04搭建GitLab伺服器 https://www.linuxidc.com/Linux/2018-01/150319.htm
相關文章