-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathinstallation-steps
More file actions
29 lines (23 loc) · 884 Bytes
/
installation-steps
File metadata and controls
29 lines (23 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
u# vi /etc/hosts
IP GitLab.bcreddydevops.local Gitlab
# apt-get update && apt upgrade -y
# apt-get install -y curl openssh-server ca-certificates tzdata perl postfix
# curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh | sudo bash
# apt-get install gitlab-ee
# gitlab-ctl reconfigure
# gitlab-ctl status
# gitlab-ctl start
# gitlab-rails console -e production
===
user = User.where(id: 1).first
user.password = 'password'
user.password_confirmation = 'password'
user.save!
then take the public ip
===================================
sudo apt-get update
sudo apt-get install
sudo apt-get install -y curl openssh-server ca-certificates
sudo apt-get install -y postfix
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh | sudo bash
$ sudo EXTERNAL_URL="https://gitlab.mcnz.com" apt-get install gitlab-ee