0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

古いバージョンのGitLab Ceのインストール

Posted at

GitLab Ceのサーバー移管をしたかったが、元サーバーのGitLab Ceのバージョンが古すぎた。。
ですが、元サーバーからのバックアップファイルを新サーバーで動かすにはバージョンを合わせる必要があります。

※Linux環境です。

必須パッケージのインストール

$ sudo yum install -y curl policycoreutils-python openssh-server

リポジトリ追加

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

インストール可能パッケージの確認

$ sudo yum list --showduplicates gitlab-ce

こちらのコマンドにて、yumでインストール可能なgitlab-ceのパッケージが表示されますが、
私が入れたかったバージョンが古すぎてyumでインストールできない

wget でダウンロード → rpmインストール

https://packages.gitlab.com/gitlab/gitlab-ce
に旧バージョンの情報があるので探す

スクリーンショット 2023-12-11 18.23.50.png

wget でダウンロード

$ wget --content-disposition https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/6/gitlab-ce-10.4.3-ce.0.el6.x86_64.rpm/download.rpm

rpmインストール

 $ rpm -ivh gitlab-ce-10.4.3-ce.0.el6.x86_64.rpm/download.rpm
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?