- Windows 10 Home
- Oracle VM Virtualbox 6.0.22
- vagrant 2.2.6
- Centos 7.8
- Box centos/7
- GitLab CE 10.2.5
sudo yum install -y curl policycoreutils-python openssh-server
sudo systemctl enable sshd
sudo systemctl start sshd
sudo firewall-cmd --permanent --add-service=http
sudo firewall-cmd --permanent --add-service=https
sudo systemctl reload firewalld
--Email sending settings --See below when using external SMTP See below for external use Use external SMTP --When installing, follow
sudo yum install postfix
sudo systemctl enable postfix
sudo systemctl start postfix
curl -s https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
sudo yum install gitlab-ce-10.2.5-ce.0.el7.x86_64
--If you want to install another version, search from the following gitlab repositories
#Edit Gitlab configuration file(Modify DB information as needed, etc.)
sudo vi /etc/gitlab/gitlab.rb
#Rebuilding(Initial construction)
sudo gitlab-ctl reconfigure
sudo systemctl start gitlab-runsvdir
--Automatic start setting enabled / disabled is as follows
#Enable autostart
sudo systemctl enable gitlab-runsvdir.service
#Disable autostart
sudo systemctl disable gitlab-runsvdir.service
-** Implemented with reference to the following site ** [Cat Protocol: Installing Old GitLab](https://protocol.nekono.tokyo/2017/09/01/%E5%8F%A4%E3%81%84gitlab%E3%81%AE%E3%82% A4% E3% 83% B3% E3% 82% B9% E3% 83% 88% E3% 83% BC% E3% 83% AB /) GitLab: Official Document
Recommended Posts