Centos7安装gitlab服务器

1.先按照官方教程

https://about.gitlab.com/downloads/#centos7

大概内容如下:

1. Install and configure the necessary dependencies

If you install Postfix to send email please select 'Internet Site' during setup. Instead of using Postfix you can also use Sendmail or configure a custom SMTP server and configure it as an SMTP server.

On CentOS, the commands below will also open HTTP and SSH access in the system firewall.

安装ssh
sudo yum install curl policycoreutils openssh-server openssh-clients sudo systemctl enable sshd sudo systemctl start sshd

安装postfix sudo yum install postfix sudo systemctl enable postfix sudo systemctl start postfix

配置防火墙 sudo firewall-cmd --permanent --add-service=http sudo systemctl reload firewalld

2. Add the GitLab package server and install the package

curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
sudo yum install gitlab-ce

If you are not comfortable installing the repository through a piped script, you can find the entire script here and select and download the package manually and install using

curl -LJO https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/7/gitlab-ce-XXX.rpm/download
rpm -i gitlab-ce-XXX.rpm

3. Configure and start GitLab

sudo gitlab-ctl reconfigure

新建用户可能无法同步或者push,需要管理员设置存储库权限

选择master+developer就行了,不要点击【unprotect】

 修改http端口

gitlab默认是80端口,修改下面3个文件,可以很容易看到端口修改的地方

vi /opt/gitlab/embedded/conf/nginx.conf

vi /var/opt/gitlab/gitlab-rails/etc/gitlab.yml

vi /var/opt/gitlab/nginx/conf/gitlab-http.conf

重启服务

gitlab-ctl restart

posted @   IWing  阅读(1942)  评论(0编辑  收藏  举报
编辑推荐:
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· 写一个简单的SQL生成工具
· AI 智能体引爆开源社区「GitHub 热点速览」
· C#/.NET/.NET Core技术前沿周刊 | 第 29 期(2025年3.1-3.9)
点击右上角即可分享
微信分享提示