gitlab-ce安装

环境:虚拟机内存6个G
软件包:gitlab-ce-10.2.3-ce.0.el7.x86_64.rpm
汉化:gitlab-patch-zh.tat.gz
1.1环境准备
yum install gitlab-ce-10.2.3-ce.0.el7.x86_64.rpm -y
yum install curl policycoreutils openssh-server openssh-clients postfix -y
systemctl start postfix
systemctl enable postfix
iptables -F
systemctl stop firewalld
systemctl disable firewalld
setenforce 0
1.2 配置gitlab
gitlab-ctl reconfigure第一次启动要初始化
等待3-5分钟

[root@master01 ~]# gitlab-ctl status
run: gitaly: (pid 7454) 133s; run: log: (pid 6935) 186s
run: gitlab-monitor: (pid 7473) 133s; run: log: (pid 7152) 169s
run: gitlab-workhorse: (pid 7440) 134s; run: log: (pid 6741) 204s
run: logrotate: (pid 6856) 192s; run: log: (pid 6855) 192s
run: nginx: (pid 6807) 198s; run: log: (pid 6806) 198s
run: node-exporter: (pid 7098) 175s; run: log: (pid 7097) 175s
run: postgres-exporter: (pid 7508) 132s; run: log: (pid 7328) 154s
run: postgresql: (pid 6300) 272s; run: log: (pid 6299) 272s
run: prometheus: (pid 7484) 133s; run: log: (pid 7254) 161s
run: redis: (pid 6132) 283s; run: log: (pid 6131) 283s
run: redis-exporter: (pid 7200) 167s; run: log: (pid 7199) 167s
run: sidekiq: (pid 6682) 210s; run: log: (pid 6681) 210s
run: unicorn: (pid 6607) 216s; run: log: (pid 6606) 216s

都是run就是成功了
netstat -antup |grep 80
安装好在浏览器打开服务器地址10.10.10.27,出现502的问题
1.虚拟机内存太小,调整到6G
2.防火墙没关

1.2 设置密码
第一次登陆gitlab需要在网页端窗口填密码,账号为root管理员

1.2.1使用命令
关闭 gitlab: # gitlab-ctl stop
启动 gitlab: # gitlab-ctl start
重启 gitlab: # gitlab-ctl restart
rpm -pql gitlab-ce-10.2.3-ce.0.el7.x86_64.rpm | more
安装在opt目录下

1.3.1汉化gitlab
gitlab-ctl stop 先停止服务
cd gitlab/ 切换到汉化包目录
git diff v10.2.3 v10.2.3-zh > ../10.2.3-zh.diff
patch -d /opt/gitlab/embedded/service/gitlab-rails/ -p1 < /root/10.2.3-zh.diff 打补丁
gitlab-ctl restat

修改gitlabhost
1.修改 gitlab.yml(/opt/gitlab/embedded/service/gitlab-rails/config/gitlab.yml)文件中的host地址
2.修改 gitlab.rb(/etc/gitlab/gitlab.rb)文件中的external_url
3.gitlab-ctl restart
4.客户端 git remote set-url origin <新的git地址>

使用git上传代码
git clone http://10.10.10.27/xuegod/xuegod-web1.git
cd xuegod-web1
echo "bbs.xuegod.cn" >> index.html
git add index.html
git commit -m "add bbs"
git config --global push.default simple
git push -u origin master
push过程中如果出现什么说项目受保护之类的权限问题,看gitlab网页端项目的群组里有没有添加该用户

删除index.html
使用git reset --hard HEAD回滚到最新版
查看每次提交的id
[root@master01 xuegod-web1]# git reflog
a7ea0fd HEAD@{0}: commit (initial): add bbs

在服务器创建分支
[root@xuegod63 xuegod-web]# git branch bbs #创建一个分支
[root@xuegod63 xuegod-web]# git checkout bbs #切换到分支 bbs
[root@xuegod63 xuegod-web]# git branch #查看当前所处的分支
[root@xuegod63 xuegod-web]# vim a.txt #随意在里面写一些内容
[root@xuegod63 xuegod-web]# git add a.txt
[root@xuegod63 xuegod-web]# git commit -m "add a.txt“ #提交到暂存区中
[root@xuegod63 xuegod-web]# git push -u origin bbs #上传到分支 bbs 分支上

你可能感兴趣的:(gitlab-ce安装)