centos7安装gitlab((默认所有操作基于root权限用户))
2023年4月14日...小于 1 分钟
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. 使用安装包安装
点击下载 (注: ce表示开源 el表示centos el7对应CentOS 7) 或者通过wget下载
gitlab下载: gitlab-ce-15.3.3-ce.0.el7.x86_64yum -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了 用户名root 密码在initial_root_password中
Powered by Waline v2.15.5