Jenkins安装和持续集成环境配置

Gitlab代码托管服务器安装

Gitlab安装

  1. 安装相关依赖
sudo yum install -y policycoreutils openssh-server openssh-clients postfix
sudo yum install -y policycoreutils-python
  1. 启动ssh服务&设置为开机启动
systemctl enable sshd && sudo systemctl start sshd
  1. 设置postfix开机自启,并启动,postfix支持gitlab发信功能
systemctl enable postfix && systemctl start postfix
  1. 开放ssh以及http服务,然后重新加载防火墙列表
firewall-cmd --add-service=ssh --permanent
firewall-cmd --add-service=http --permanent
firewall-cmd --reload
# 如果关闭防火墙就不需要做以上配置
  1. 下载gitlab包,并且安装
  • 在线下载安装包
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-15.9.8-ce.0.el7.x86_64.rpm
  • 安装
rpm -i gitlab-ce-15.9.8-ce.0.el7.x86_64.rpm
  1. 修改gitlab配置
  • 进入小gitlab配置文件
vim /etc/gitlab/gitlab.rb
  • 修改啊git访问地址和端口,默认为80,改为82(可自定义)
external_url 'http://172.139.20.80:82'
nginx['listen_port']=82
  1. 重载配置及启动gitlab
gitlab-ctl reconfigure
gitlab-ctl restart
  1. 把端口添加到防火墙
firewall-cmd --zone=public --add-port=82/tcp --permanent
firewall-cmd --reload
  1. 启动成功后,访问'http://172.139.20.80:82'可以看到以下界面
  2. 查看默认密码
cat /etc/gitlab/initial_root_password 
  1. 找到密码并复制到web界面登陆,账号为root,登陆之后到perfence修改密码

    img

Gitlab添加组、创建用户、创建项目

  1. 创建组
    使用管理员root创建组,一个组里面可以有多个项目分支,可以将开发添加到组里面进行设置权限,不同的组就是公司不同的开发项目或者服务模块,不同的组添加不同的开发即可实现对开发设置权限管理。
    img
    img
    img
  2. 创建用户
    创建用户的时候,可以选择regular和admin类型。
  • 进入到管理区域
    img
  • 添加用户
    img
  • 设置用户名和邮箱
    img
    img
  • 创建好之后立刻设置密码
    img
    img
  1. 将用户添加到组中
    选择某个用户组,进行members管理组的成员。
    img
    img
    img
    添加完后可以看到用户信息
    img
  2. 在用户组中创建项目
    以刚才创建的新用户身份登录到gitlab,然后在用户组中创建新的项目
    img
    img
    img
posted @ 2024-08-04 15:48  小肚腩吖  阅读(5)  评论(0编辑  收藏  举报