跳至主要內容

centos7安装gitlab((默认所有操作基于root权限用户))

brinishness2023年4月14日...小于 1 分钟Gitlabgitlab

centos7安装gitlab((默认所有操作基于root权限用户))

1. 快速安装

curl -s https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
yum list --showduplicates | grep gitlab |  sort -nr -k 2 # 查看所有gitlab版本
yum -y install gitlab-ce-15.3.3-ce.0.el7.x86_64 # 例 gitlab-ce(名称)-15.3.3-ce.0.el7(版本).x86_64(架构)

2. 使用安装包安装

gitlab下载: gitlab-ce-15.3.3-ce.0.el7.x86_64点击下载open in new window (注: ce表示开源 el表示centos el7对应CentOS 7) 或者通过wget下载

yum -y install wget # 若无wget请先安装
wget --content-disposition https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/7/gitlab-ce-15.3.3-ce.0.el7.x86_64.rpm/download.rpm

gitlab安装 (等待gitlab下载完成)

rpm -Uvh gitlab-ce-15.3.3-ce.0.el7.x86_64.rpm

gitlab配置

vi /etc/gitlab/gitlab.rb # gitlab配置文件
external_url http://gitlab.example.com   # 原来的
external_url http://172.16.151.128  # 修改后 (172.16.151.128为gitlab服务器ip地址)
gitlab-ctl reconfigure # 重载gitlab配置
cat /etc/gitlab/initial_root_password # gitlab 安装初始化后,默认账户名是root,密码存放在/etc/gitlab/initial_root_password中 这个文件将在首次执行reconfigure后24小时自动删除

现在可以使用http://172.16.151.128访问gitlab了open in new window 用户名root 密码在initial_root_password中

评论
  • 按正序
  • 按倒序
  • 按热度
Powered by Waline v2.15.5