installation.md 18.4 KB
Newer Older
1
# Installation from source
M
Marin Jankovski 已提交
2

3 4
## Consider the Omnibus package installation

5
Since an installation from source is a lot of work and error prone we strongly recommend the fast and reliable [Omnibus package installation](https://about.gitlab.com/downloads/) (deb/rpm).
6

7 8
## Select Version to Install

S
Sytse Sijbrandij 已提交
9
Make sure you view [this installation guide](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/install/installation.md) from the tag (version) of GitLab you would like to install.
10 11
In most cases this should be the highest numbered production tag (without rc in it).
You can select the tag in the version dropdown in the top left corner of GitLab (below the menu bar).
12

13
If the highest number stable branch is unclear please check the [GitLab Blog](https://about.gitlab.com/blog/) for installation guide links by version.
14

15
## Important Notes
V
Valery Sizov 已提交
16

17 18
This guide is long because it covers many cases and includes all commands you need, this is [one of the few installation scripts that actually works out of the box](https://twitter.com/robinvdvleuten/status/424163226532986880).

19
This installation guide was created for and tested on **Debian/Ubuntu** operating systems. Please read [doc/install/requirements.md](./requirements.md) for hardware and operating system requirements. If you want to install on RHEL/CentOS we recommend using the [Omnibus packages](https://about.gitlab.com/downloads/).
20

21
This is the official installation guide to set up a production server. To set up a **development installation** or for many other installation options please see [the installation section of the readme](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/README.md#installation).
22

23
The following steps have been known to work. Please **use caution when you deviate** from this guide. Make sure you don't violate any assumptions GitLab makes about its environment. For example many people run into permission problems because they changed the location of directories or run services as the wrong user.
S
Sytse Sijbrandij 已提交
24

25 26 27
If you find a bug/error in this guide please **submit a merge request**
following the
[contributing guide](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md).
D
Dmitriy Zaporozhets 已提交
28

29
## Overview
V
Valery Sizov 已提交
30

P
PaulWagener 已提交
31
The GitLab installation consists of setting up the following components:
32

R
Riyad Preukschas 已提交
33
1. Packages / Dependencies
34 35 36
1. Ruby
1. System Users
1. Database
37
1. Redis
38 39
1. GitLab
1. Nginx
V
Valery Sizov 已提交
40

41
## 1. Packages / Dependencies
V
Valery Sizov 已提交
42

43 44
`sudo` is not installed on Debian by default. Make sure your system is
up-to-date and install it.
R
Robert Speicher 已提交
45

46 47 48 49
    # run as root!
    apt-get update -y
    apt-get upgrade -y
    apt-get install sudo -y
V
Valery Sizov 已提交
50

51
**Note:** During this installation some files will need to be edited manually. If you are familiar with vim set it as default editor with the commands below. If you are not familiar with vim please skip this and keep using the default editor.
52

S
Sytse Sijbrandij 已提交
53
    # Install vim and set as default editor
54
    sudo apt-get install -y vim
S
Sytse Sijbrandij 已提交
55
    sudo update-alternatives --set editor /usr/bin/vim.basic
56

D
dosire 已提交
57
Install the required packages (needed to compile Ruby and native extensions to Ruby gems):
58

V
Valery Sizov 已提交
59
    sudo apt-get install -y build-essential zlib1g-dev libyaml-dev libssl-dev libgdbm-dev libreadline-dev libncurses5-dev libffi-dev curl openssh-server redis-server checkinstall libxml2-dev libxslt-dev libcurl4-openssl-dev libicu-dev logrotate python-docutils pkg-config cmake libkrb5-dev
60

61 62 63 64 65
Make sure you have the right version of Git installed

    # Install Git
    sudo apt-get install -y git-core

66
    # Make sure Git is version 1.7.10 or higher, for example 1.7.12 or 2.0.0
67 68
    git --version

69
Is the system packaged Git too old? Remove it and compile from source.
70 71 72 73 74

    # Remove packaged Git
    sudo apt-get remove git-core

    # Install dependencies
75
    sudo apt-get install -y libcurl4-openssl-dev libexpat1-dev gettext libz-dev libssl-dev build-essential
76 77 78

    # Download and compile from source
    cd /tmp
V
Valery Sizov 已提交
79 80
    curl -L --progress https://www.kernel.org/pub/software/scm/git/git-2.1.2.tar.gz | tar xz
    cd git-2.1.2/
B
Ben Bodenmiller 已提交
81
    ./configure
82 83 84 85 86
    make prefix=/usr/local all

    # Install into /usr/local/bin
    sudo make prefix=/usr/local install

B
Ben Bodenmiller 已提交
87
    # When editing config/gitlab.yml (Step 5), change the git -> bin_path to /usr/local/bin/git
88

S
Sytse Sijbrandij 已提交
89
**Note:** In order to receive mail notifications, make sure to install a mail server. By default, Debian is shipped with exim4 but this [has problems](https://github.com/gitlabhq/gitlabhq/issues/4866#issuecomment-32726573) while Ubuntu does not ship with one. The recommended mail server is postfix and you can install it with:
90

91
    sudo apt-get install -y postfix
92 93

Then select 'Internet Site' and press enter to confirm the hostname.
94

95
## 2. Ruby
V
Valery Sizov 已提交
96

B
Ben Bodenmiller 已提交
97
The use of Ruby version managers such as [RVM](http://rvm.io/), [rbenv](https://github.com/sstephenson/rbenv) or [chruby](https://github.com/postmodern/chruby) with GitLab in production frequently leads to hard to diagnose problems. For example, GitLab Shell is called from OpenSSH and having a version manager can prevent pushing and pulling over SSH. Version managers are not supported and we strongly advise everyone to follow the instructions below to use a system Ruby.
D
dosire 已提交
98

99
Remove the old Ruby 1.8 if present
100

101
    sudo apt-get remove ruby1.8
102

103
Download Ruby and compile it:
104

105
    mkdir /tmp/ruby && cd /tmp/ruby
106 107
    curl -L --progress http://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.5.tar.gz | tar xz
    cd ruby-2.1.5
108
    ./configure --disable-install-rdoc
V
Valery Sizov 已提交
109 110 111
    make
    sudo make install

112 113
Install the Bundler Gem:

114
    sudo gem install bundler --no-ri --no-rdoc
115

116
## 3. System Users
R
Riyad Preukschas 已提交
117

118
Create a `git` user for GitLab:
119

D
Dmitriy Zaporozhets 已提交
120
    sudo adduser --disabled-login --gecos 'GitLab' git
V
Valery Sizov 已提交
121

122
## 4. Database
R
randx 已提交
123

124
We recommend using a PostgreSQL database. For MySQL check [MySQL setup guide](database_mysql.md). *Note*: because we need to make use of extensions you need at least pgsql 9.1.
125 126

    # Install the database packages
127
    sudo apt-get install -y postgresql postgresql-client libpq-dev
128 129 130 131

    # Login to PostgreSQL
    sudo -u postgres psql -d template1

132 133
    # Create a user for GitLab
    # Do not type the 'template1=#', this is part of the prompt
134
    template1=# CREATE USER git CREATEDB;
135 136 137 138 139 140 141 142 143

    # Create the GitLab production database & grant all privileges on database
    template1=# CREATE DATABASE gitlabhq_production OWNER git;

    # Quit the database session
    template1=# \q

    # Try connecting to the new database with the new user
    sudo -u git -H psql -d gitlabhq_production
144

145 146
    # Quit the database session
    gitlabhq_production> \q
R
randx 已提交
147

J
Jacob Vosmaer 已提交
148 149 150 151 152 153
## 5. Redis

    sudo apt-get install redis-server

    # Configure redis to use sockets
    sudo cp /etc/redis/redis.conf /etc/redis/redis.conf.orig
154

155 156 157 158 159
    # Disable Redis listening on TCP by setting 'port' to 0
    sed 's/^port .*/port 0/' /etc/redis/redis.conf.orig | sudo tee /etc/redis/redis.conf

    # Enable Redis socket for default Debian / Ubuntu path
    echo 'unixsocket /var/run/redis/redis.sock' | sudo tee -a /etc/redis/redis.conf
H
Hugo Osvaldo Barrera 已提交
160 161 162 163 164 165 166 167 168 169 170
    # Grant permission to the socket to all members of the redis group
    echo 'unixsocketperm 770' | sudo tee -a /etc/redis/redis.conf

    # Create the directory which contains the socket
    mkdir /var/run/redis
    chown redis:redis /var/run/redis
    chmod 755 /var/run/redis
    # Persist the directory which contains the socket, if applicable
    if [ -d /etc/tmpfiles.d ]; then
      echo 'd  /var/run/redis  0755  redis  redis  10d  -' | sudo tee -a /etc/tmpfiles.d/redis.conf
    fi
J
Jacob Vosmaer 已提交
171 172 173 174 175 176 177 178

    # Activate the changes to redis.conf
    sudo service redis-server restart

    # Add git to the redis group
    sudo usermod -aG redis git

## 6. GitLab
V
Valery Sizov 已提交
179

D
Dmitriy Zaporozhets 已提交
180 181
    # We'll install GitLab into home directory of the user "git"
    cd /home/git
182

183
### Clone the Source
R
randx 已提交
184

D
Dmitriy Zaporozhets 已提交
185
    # Clone GitLab repository
186
    sudo -u git -H git clone https://gitlab.com/gitlab-org/gitlab-ce.git -b 7-8-stable gitlab
D
Dmitriy Zaporozhets 已提交
187

188
**Note:** You can change `7-8-stable` to `master` if you want the *bleeding edge* version, but never install master on a production server!
189

B
Ben Bodenmiller 已提交
190
### Configure It
R
randx 已提交
191

192
    # Go to GitLab installation folder
D
Dmitriy Zaporozhets 已提交
193
    cd /home/git/gitlab
194

R
Riyad Preukschas 已提交
195
    # Copy the example GitLab config
D
Dmitriy Zaporozhets 已提交
196
    sudo -u git -H cp config/gitlab.yml.example config/gitlab.yml
V
Valery Sizov 已提交
197

B
Ben Bodenmiller 已提交
198
    # Update GitLab config file, follow the directions at top of file
S
Sytse Sijbrandij 已提交
199
    sudo -u git -H editor config/gitlab.yml
200

R
Riyad Preukschas 已提交
201
    # Make sure GitLab can write to the log/ and tmp/ directories
202 203
    sudo chown -R git log/
    sudo chown -R git tmp/
204
    sudo chmod -R u+rwX,go-w log/
205
    sudo chmod -R u+rwX tmp/
R
Riyad Preukschas 已提交
206

207
    # Create directory for satellites
D
Dmitriy Zaporozhets 已提交
208
    sudo -u git -H mkdir /home/git/gitlab-satellites
M
Michael Krane 已提交
209
    sudo chmod u+rwx,g=rx,o-rwx /home/git/gitlab-satellites
210

211 212 213
    # Make sure GitLab can write to the tmp/pids/ and tmp/sockets/ directories
    sudo chmod -R u+rwX tmp/pids/
    sudo chmod -R u+rwX tmp/sockets/
214

215
    # Make sure GitLab can write to the public/uploads/ directory
216 217
    sudo chmod -R u+rwX  public/uploads

218
    # Copy the example Unicorn config
219
    sudo -u git -H cp config/unicorn.rb.example config/unicorn.rb
A
Andrey Kumanyaev 已提交
220

221 222
    # Find number of cores
    nproc
223

224 225
    # Enable cluster mode if you expect to have a high load instance
    # Ex. change amount of workers to 3 for 2GB RAM server
226
    # Set the number of workers to at least the number of cores
L
Lukas Elmer 已提交
227
    sudo -u git -H editor config/unicorn.rb
228

M
Marin Jankovski 已提交
229 230 231
    # Copy the example Rack attack config
    sudo -u git -H cp config/initializers/rack_attack.rb.example config/initializers/rack_attack.rb

232 233 234
    # Configure Git global settings for git user, useful when editing via web
    # Edit user.email according to what is set in gitlab.yml
    sudo -u git -H git config --global user.name "GitLab"
235
    sudo -u git -H git config --global user.email "example@example.com"
236
    sudo -u git -H git config --global core.autocrlf input
237

J
Jacob Vosmaer 已提交
238 239 240
    # Configure Redis connection settings
    sudo -u git -H cp config/resque.yml.example config/resque.yml

241
    # Change the Redis socket path if you are not using the default Debian / Ubuntu configuration
J
Jacob Vosmaer 已提交
242 243
    sudo -u git -H editor config/resque.yml

244
**Important Note:** Make sure to edit both `gitlab.yml` and `unicorn.rb` to match your setup.
R
Riyad Preukschas 已提交
245

B
Ben Bodenmiller 已提交
246 247
**Note:** If you want to use HTTPS, see [Using HTTPS](#using-https) for the additional steps.

B
Ben Bodenmiller 已提交
248
### Configure GitLab DB Settings
249

250
    # PostgreSQL only:
251
    sudo -u git cp config/database.yml.postgresql config/database.yml
252

253 254 255
    # MySQL only:
    sudo -u git cp config/database.yml.mysql config/database.yml

256
    # MySQL and remote PostgreSQL only:
257
    # Update username/password in config/database.yml.
258
    # You only need to adapt the production settings (first part).
259
    # If you followed the database guide then please do as follows:
260 261
    # Change 'secure password' with the value you have given to $password
    # You can keep the double quotes around the password
S
Sytse Sijbrandij 已提交
262
    sudo -u git -H editor config/database.yml
263

264
    # PostgreSQL and MySQL:
265 266
    # Make config/database.yml readable to git only
    sudo -u git -H chmod o-rwx config/database.yml
267

268
### Install Gems
269

270
**Note:** As of bundler 1.5.2, you can invoke `bundle install -jN` (where `N` the number of your processor cores) and enjoy the parallel gems installation with measurable difference in completion time (~60% faster). Check the number of your cores with `nproc`. For more information check this [post](http://robots.thoughtbot.com/parallel-gem-installing-using-bundler). First make sure you have bundler >= 1.5.2 (run `bundle -v`) as it addresses some [issues](https://devcenter.heroku.com/changelog-items/411) that were [fixed](https://github.com/bundler/bundler/pull/2817) in 1.5.2.
271

272
    # For PostgreSQL (note, the option says "without ... mysql")
273
    sudo -u git -H bundle install --deployment --without development test mysql aws
274

275 276 277
    # Or if you use MySQL (note, the option says "without ... postgres")
    sudo -u git -H bundle install --deployment --without development test postgres aws

B
Ben Bodenmiller 已提交
278
### Install GitLab Shell
279

280
GitLab Shell is an SSH access and repository management software developed specially for GitLab.
281 282

    # Run the installation task for gitlab-shell (replace `REDIS_URL` if needed):
283
    sudo -u git -H bundle exec rake gitlab:shell:install[v2.5.4] REDIS_URL=unix:/var/run/redis/redis.sock RAILS_ENV=production
284

B
Ben Bodenmiller 已提交
285
    # By default, the gitlab-shell config is generated from your main GitLab config.
286
    # You can review (and modify) the gitlab-shell config as follows:
287
    sudo -u git -H editor /home/git/gitlab-shell/config.yml
288

B
Ben Bodenmiller 已提交
289
**Note:** If you want to use HTTPS, see [Using HTTPS](#using-https) for the additional steps.
290

291
### Initialize Database and Activate Advanced Features
292 293 294 295 296 297 298

    sudo -u git -H bundle exec rake gitlab:setup RAILS_ENV=production

    # Type 'yes' to create the database tables.

    # When done you see 'Administrator account created:'

299
**Note:** You can set the Administrator/root password by supplying it in environmental variable `GITLAB_ROOT_PASSWORD` as seen below. If you don't set the password (and it is set to the default one) please wait with exposing GitLab to the public internet until the installation is done and you've logged into the server the first time. During the first login you'll be forced to change the default password.
300

301
    sudo -u git -H bundle exec rake gitlab:setup RAILS_ENV=production GITLAB_ROOT_PASSWORD=yourpassword
302

303
### Install Init Script
304

B
Ben Bodenmiller 已提交
305
Download the init script (will be `/etc/init.d/gitlab`):
306

307
    sudo cp lib/support/init.d/gitlab /etc/init.d/gitlab
R
Rovanion Luckey 已提交
308 309 310 311

And if you are installing with a non-default folder or user copy and edit the defaults file:

    sudo cp lib/support/init.d/gitlab.default.example /etc/default/gitlab
312

B
Ben Bodenmiller 已提交
313
If you installed GitLab in another directory or as a user other than the default you should change these settings in `/etc/default/gitlab`. Do not edit `/etc/init.d/gitlab` as it will be changed on upgrade.
314 315 316 317 318

Make GitLab start on boot:

    sudo update-rc.d gitlab defaults 21

319
### Setup Logrotate
320 321

    sudo cp lib/support/logrotate/gitlab /etc/logrotate.d/gitlab
322

323
### Check Application Status
R
Robert Speicher 已提交
324

325
Check if GitLab and its environment are configured correctly:
326

D
Dmitriy Zaporozhets 已提交
327
    sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production
328

329
### Compile Assets
330 331 332

    sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production

333
### Start Your GitLab Instance
334 335 336 337 338

    sudo service gitlab start
    # or
    sudo /etc/init.d/gitlab restart

J
Jacob Vosmaer 已提交
339
## 7. Nginx
V
Valery Sizov 已提交
340

341
**Note:** Nginx is the officially supported web server for GitLab. If you cannot or do not want to use Nginx as your web server, have a look at the [GitLab recipes](https://gitlab.com/gitlab-org/gitlab-recipes/).
342

343
### Installation
344

345
    sudo apt-get install -y nginx
346

347
### Site Configuration
R
Riyad Preukschas 已提交
348

349
Copy the example site config:
R
Riyad Preukschas 已提交
350

351
    sudo cp lib/support/nginx/gitlab /etc/nginx/sites-available/gitlab
352
    sudo ln -s /etc/nginx/sites-available/gitlab /etc/nginx/sites-enabled/gitlab
V
Valery Sizov 已提交
353

R
Riyad Preukschas 已提交
354 355
Make sure to edit the config file to match your setup:

356 357
    # Change YOUR_SERVER_FQDN to the fully-qualified
    # domain name of your host serving GitLab.
S
Sytse Sijbrandij 已提交
358
    sudo editor /etc/nginx/sites-available/gitlab
D
Dmitriy Zaporozhets 已提交
359

B
Ben Bodenmiller 已提交
360
**Note:** If you want to use HTTPS, replace the `gitlab` Nginx config with `gitlab-ssl`. See [Using HTTPS](#using-https) for HTTPS configuration details.
B
Ben Bodenmiller 已提交
361 362 363 364 365 366

### Test Configuration

Validate your `gitlab` or `gitlab-ssl` Nginx config file with the following command:

    sudo nginx -t
367

C
Ciro Santilli 已提交
368
You should receive `syntax is okay` and `test is successful` messages. If you receive errors check your `gitlab` or `gitlab-ssl` Nginx config file for typos, etc. as indicated in the error message given.
369

370
### Restart
R
Riyad Preukschas 已提交
371

372
    sudo service nginx restart
D
Dmitriy Zaporozhets 已提交
373

374
## Done!
375

376
### Double-check Application Status
377 378 379 380 381 382 383

To make sure you didn't miss anything run a more thorough check with:

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

If all items are green, then congratulations on successfully installing GitLab!

384 385
NOTE: Supply `SANITIZE=true` environment variable to `gitlab:check` to omit project names from the output of the check command.

386
### Initial Login
387

388
Visit YOUR_SERVER in your web browser for your first GitLab login. The setup has created a default admin account for you. You can use it to log in:
V
Valery Sizov 已提交
389

390
    root
391
    5iveL!fe
392

393
**Important Note:** On login you'll be prompted to change the password.
R
Riyad Preukschas 已提交
394 395 396

**Enjoy!**

397 398
You can use `sudo service gitlab start` and `sudo service gitlab stop` to start and stop GitLab.

399
## Advanced Setup Tips
V
Valery Sizov 已提交
400

401 402
### Using HTTPS

B
Ben Bodenmiller 已提交
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
To use GitLab with HTTPS:

1. In `gitlab.yml`:
    1. Set the `port` option in section 1 to `443`.
    1. Set the `https` option in section 1 to `true`.
1. In the `config.yml` of gitlab-shell:
    1. Set `gitlab_url` option to the HTTPS endpoint of GitLab (e.g. `https://git.example.com`).
    1. Set the certificates using either the `ca_file` or `ca_path` option.
1. Use the `gitlab-ssl` Nginx example config instead of the `gitlab` config.
    1. Update `YOUR_SERVER_FQDN`.
    1. Update `ssl_certificate` and `ssl_certificate_key`.
    1. Review the configuration file and consider applying other security and performance enhancing features.

Using a self-signed certificate is discouraged but if you must use it follow the normal directions then:

B
Ben Bodenmiller 已提交
418
1. Generate a self-signed SSL certificate:
419

B
Ben Bodenmiller 已提交
420 421 422 423 424 425 426
    ```
    mkdir -p /etc/nginx/ssl/
    cd /etc/nginx/ssl/
    sudo openssl req -newkey rsa:2048 -x509 -nodes -days 3560 -out gitlab.crt -keyout gitlab.key
    sudo chmod o-r gitlab.key
    ```
1. In the `config.yml` of gitlab-shell set `self_signed_cert` to `true`.
427

428
### Additional Markup Styles
V
Valery Sizov 已提交
429

430
Apart from the always supported markdown style there are other rich text files that GitLab can display. But you might have to install a dependency to do so. Please see the [github-markup gem readme](https://github.com/gitlabhq/markup#markups) for more information.
431

432
### Custom Redis Connection
433

434
If you'd like Resque to connect to a Redis server on a non-standard port or on a different host, you can configure its connection string via the `config/resque.yml` file.
435

R
Riyad Preukschas 已提交
436
    # example
437
    production: redis://redis.example.tld:6379
438

439
If you want to connect the Redis server via socket, then use the "unix:" URL scheme and the path to the Redis socket file in the `config/resque.yml` file.
440 441 442 443

    # example
    production: unix:/path/to/redis/socket

444
### Custom SSH Connection
445

446
If you are running SSH on a non-standard port, you must change the GitLab user's SSH config.
447

D
Dmitriy Zaporozhets 已提交
448
    # Add to /home/git/.ssh/config
449 450 451 452
    host localhost          # Give your setup a name (here: override localhost)
        user git            # Your remote git user
        port 2222           # Your port number
        hostname 127.0.0.1; # Your server name or IP
453

454
You also need to change the corresponding options (e.g. `ssh_user`, `ssh_host`, `admin_uri`) in the `config\gitlab.yml` file.
455

456
### LDAP Authentication
457

458
You can configure LDAP authentication in `config/gitlab.yml`. Please restart GitLab after editing this file.
459 460 461

### Using Custom Omniauth Providers

462
See the [omniauth integration document](../integration/omniauth.md)