2024年6月2日時点だとそのままでは入らなかったのでメモです。
基本はインストール手順(https://about.gitlab.com/ja-jp/install/#ubuntu)そのままです。
変更内容は単純で、Ubuntu 22.04 LTS向けのリポジトリに変更しています。
参考元:https://forum.gitlab.com/t/ubuntu-24-04-lts-support/103710
- 依存関係のインストール ※ Ubuntu 24.04だと全て入っている様子
apt install curl openssh-server ca-certificates tzdata perl - GitLabのリポジトリの追加と設定 ※ ここではPostfixは入れない
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh -O
bash script.deb.sh
リポジトリのファイルを編集する
vim /etc/apt/sources.list.d/gitlab_gitlab-ce.list
※ “noble”を”jammy”で置き換える。 - GitLabのインストール
apt update
apt intstall gitlab-ce - GitLabの設定ファイル編集と構築
vim /etc/gitlab/gitlab.rb
※ external_urlを必要に応じて変更
gitlab-ctl reconfigure - rootのパスワードを確保する ※ 一定時間で消える
cat /etc/gitlab/initial_root_password
GitLabの設定ファイルに記載したアドレスでアクセスすると、ログイン画面が表示されます。
rootと、確保したパスワードでログインできれば問題ありません。