sudo yum install -y curl policycoreutils-python openssh-server postfix
#啓動sshd並配置開機啓動 sudo systemctl enable sshd sudo systemctl start sshd #啓動postfix並配置開機啓動 sudo systemctl enable postfix sudo systemctl start postfix #防火牆放行http、https sudo firewall-cmd --permanent --add-service=http sudo firewall-cmd --permanent --add-service=https #從新加載防火牆 sudo systemctl reload firewalld
清華大學源地址:https://mirrors.tuna.tsinghua.edu.cn/python
直接在服務器上下載git
cd /tmp && wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-12.3.5-ce.0.el7.x86_64.rpm
或者下載到本地的wondows機器再上傳到服務器vim
一、安裝gitlab服務器
rpm -ivh gitlab-ce-12.3.5-ce.0.el7.x86_64.rpm
二、修改配置文件 /etc/gitlab/gitlab.rbssh
vim /etc/gitlab/gitlab.rb
把圖中的域名改爲本身的域名或者ipcurl
sed -i "/^external_url/c external_url 'http://192.168.0.107:168' " /etc/gitlab/gitlab.rb
配置郵箱帳號
配置郵箱smtp
三、從新加載gitlab 的配置文件ide
gitlab-ctl reconfigure
首次加載配置文件時間有點長gitlab
四、gitlab 命令post
#gitlab 啓動 gitlab-ctl start #gitlab 中止 gitlab-ctl stop #查看gitlab 狀態 gitlab-ctl status
五、訪問 http://192.168.0.107:168 設置管理員密碼,登陸gitlaburl