- 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
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
#Bearbeiten Sie die Gitlab-Konfigurationsdatei(Geänderte DB-Informationen usw. nach Bedarf)
sudo vi /etc/gitlab/gitlab.rb
#Wiederaufbau(Erstbau)
sudo gitlab-ctl reconfigure
sudo systemctl start gitlab-runsvdir
#Aktivieren Sie den Autostart
sudo systemctl enable gitlab-runsvdir.service
#Deaktivieren Sie den Autostart
sudo systemctl disable gitlab-runsvdir.service
Recommended Posts