2 Answers
- Newest
- Most votes
- Most comments
0
Hello.
After installing by following the steps in the document below, I was able to confirm the login.
https://about.gitlab.com/install/#almalinux
sudo su - dnf install postfix -y systemctl enable postfix systemctl start postfix curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.rpm.sh | sudo bash sudo EXTERNAL_URL="http://EC2 IP" dnf install -y gitlab-ee cat /etc/gitlab/initial_root_password
0
similar to gitlab-ee
refer: https://packages.gitlab.com/gitlab/gitlab-ce/install#bash-rpm
work fine on my site
dnf install -y policycoreutils-python-utils openssh-server openssh-clients perl
# postfix if you want
dnf install postfix
systemctl enable postfix
systemctl start postfix
#
curl -s https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
# search for the package, may check the version
dnf search gitlab
dnf info gitlab-ce.x86_64
#
EXTERNAL_URL="https://lalala.example.com" dnf install -y gitlab-ce
answered a year ago
Relevant content
asked 3 years ago
asked 3 years ago
asked 2 years ago
- AWS OFFICIALUpdated 3 months ago

https://about.gitlab.com/install/#amazonlinux-2023 Added official installation method for Amazon Linux 2023.