GitLab是一个基于Git的版本管理系统,可以提供代码仓库、代码审核、问题跟踪等功能。
下面是CentOS7系统上安装GitLab的步骤:
sudo yum install curl policycoreutils openssh-server openssh-clients sudo systemctl enable sshd sudo systemctl start sshd sudo firewall-cmd --permanent --add-service=http sudo systemctl reload firewalld
sudo yum install postgresql-server postgresql-contrib sudo postgresql-setup initdb sudo systemctl enable postgresql sudo systemctl start postgresql
打开 /var/lib/pgsql/data/pg_hba.conf
文件,找到以下行:
# "local" is for Unix domain socket connections onlylocal all all peer# IPv4 local connections:host all all 127.0.0.1/32 ident# IPv6 local connections:host all all ::1/128 ident
将 peer
改为 peer
改为 md5
md5
,保存文件并退出。
curl | sudo bash sudo EXTERNAL_URL="
其中,EXTERNAL_URL
指定GitLab的地址。
sudo gitlab-ctl reconfigure sudo gitlab-ctl start
访问 ,根据提示设置管理员密码。
至此,GitLab安装完成。可以登录到GitLab控制台,创建代码仓库、添加开发者等。
以上是CentOS7系统GitLab安装部署教程。的详细内容。更多信息请关注PHP中文网其他相关文章!