yum install -y curl policycoreutils-pythonopenssh-server
设置开机自启
sudo systemctl enable sshd
启动服务
sudo systemctl start sshd
邮件服务
sudo yum install postfix
设置开机自启
sudo systemctl enable postfix
启动服务
sudo systemctl start postfix
依赖
yum install policycoreutils-python
下载gitlab
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm
下载失败可以尝试吧https换成http
rpm -i gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm
出现下图表示安装成功
编辑github配置
vim /etc/gitlab/gitlab.rb
修改访问地址
external_url 'http://101.34.116.9/'
更新配置
gitlab-ctl reconfigure
启动gitlab
gitlab-ctl restart
访问:http://101.34.116.9/
首次访问需要更新下密码
更改完密码以后,直接登录即可(用户名是root)
启用SSH和HTTPS
关闭头像服务
取消注册
登陆设置
一个组可以有多个项目,一般把相同的项目打在一个组
新建组
将用户添加到组
将用户清除出组
新建项目
添加用户到项目
新建用户
git init
git remote add origin git@150.158.169.42:ink/demo.git
git add .
git commit -m "Initial commit"
git push -u origin master
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://lebron.blog.csdn.net/article/details/125862961
内容来源于网络,如有侵权,请联系作者删除!