summaryrefslogtreecommitdiff
path: root/doc/update/4.1-to-4.2.md
blob: 5ee8e8781e96b21524801cedd54a35701783f015 (plain)
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
30
31
32
33
34
35
# From 4.1 to 4.2

## 1. Stop server & Resque

    sudo service gitlab stop

## 2. Update code & DB

```bash

#Set the working directory
cd /home/gitlab/gitlab/

# Get latest code
sudo -u gitlab -H git fetch

sudo -u gitlab -H git checkout 4-2-stable

# Install libs
sudo -u gitlab -H bundle install --without development test postgres --deployment

# update db
sudo -u gitlab -H bundle exec rake db:migrate RAILS_ENV=production

```

## 3. Check GitLab's status

```bash
sudo -u gitlab -H bundle exec rake gitlab:check RAILS_ENV=production
```

## 4. Start all

    sudo service gitlab start