安装Git
在Linux系统中是需要编译源码的,首先下载所需要的依赖:
yum install -y curl-devel expat-devel gettext-devel openssl-devel zlib-devel gcc perl-ExtUtils-MakeMaker
方法一
下载:
wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.39.1.tar.gz
卸载旧版本git,(安装依赖时会自动安装git,所以需要卸载旧版本):
yum -y remove git
解压:
tar -zxvf git-2.39.1.tar.gz
进入解压后的git文件夹
cd git-2.39.1.tar.gz
编译git源码
make prefix=/usr all
安装git至usr路径
make prefix=/usr install
默认位置,不用加环境变量
查看版本:
git --version
git version 2.39.1
方法二
安装yum源:
yum install https://opensource.wandisco.com/centos/7/git/x86_64/wandisco-git-release-7-1.noarch.rpm
这个源会存在于/var/tmp/yum-root-5lDDzM/中
然后在安装,就是最新版本
yum install git -y
查看版本:
git --version
git version 2.39.1
安装gitlab
安装依赖:
yum install curl openssh-server openssh-clients postfix policycoreutils-python
启动sshd并设置开机自启
systemctl enable sshd
systemctl start sshd
方法一
下载gitlab:
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-15.8.0-ce.0.el7.x86_64.rpm
安装:
rpm -ivh gitlab-ce-15.8.0-ce.0.el7.x86_64.rpm
方法二(极狐官方)
配置极狐GitLab 软件源镜像:
curl -fsSL https://packages.gitlab.cn/repository/raw/scripts/setup.sh | /bin/bash
接下来,安装极狐GitLab。确保您已正确设置您的 DNS,并更改 https://gitlab.example.com 为您要访问极狐GitLab 实例的 URL。安装包将在该 URL 上自动配置和启动极狐GitLab。
对于 https 站点,极狐GitLab 将使用 Let’s Encrypt 自动请求 SSL 证书,这需要有效的主机名和入站 HTTP 访问。您也可以使用自己的证书或仅使用 http://(不带s)。
如果您想为初始管理员用户(root)指定自定义密码,请查看文档。如果未指定密码,将自动生成随机密码。
执行如下命令开始安装:
EXTERNAL_URL="https://gitlab.example.com" yum install -y gitlab-jh
访问极狐GitLab 实例并登录
除非您在安装过程中指定了自定义密码,否则将随机生成一个密码并存储在 /etc/gitlab/initial_root_password
文件中(出于安全原因,24 小时后,此文件会被第一次 gitlab-ctl reconfigure 自动删除,因此若使用随机密码登录,建议安装成功初始登录成功之后,立即修改初始密码)。使用此密码和用户名 root 登录。
修改端口号:
vi /etc/gitlab/gitlab.rb
external_url ' http://192.168.0.1:8188 '
防火墙新增端口8188:
firewall-cmd --zone=public --add-port=8188/tcp --permanent
firewall-cmd – reload
配置GitLab(配置完自动启动,默认账号root):
gitlab-ctl reconfigure
开启重启关闭:
gitlab-ctl start
gitlab-ctl stop
gitlab-ctl restart
登录gitlab
浏览器访问http://192.168.0.1:8188/
gitlab管理员账号root,而密码在一个自动生成的文件 /etc/gitlab/initial_root_password 中(密码不会含空格),且会在 24 小时后自动被删除。
通过cat /etc/gitlab/initial_root_password找到密码进行登录
成功登录的页面
修改一下密码http://192.168.0.1:8188/admin/users/root/edit