requirements.md 10.7 KB
Newer Older
1 2 3 4
---
type: reference
---

Marin Jankovski's avatar
Marin Jankovski committed
5 6
# Requirements

7 8 9
This page includes useful information on the supported Operating Systems as well
as the hardware requirements that are needed to install and use GitLab.

Marin Jankovski's avatar
Marin Jankovski committed
10
## Operating Systems
11

12
### Supported Linux distributions
randx's avatar
randx committed
13

14 15
- Ubuntu
- Debian
16
- CentOS
17
- openSUSE
18
- Red Hat Enterprise Linux (please use the CentOS packages and instructions)
19 20
- Scientific Linux (please use the CentOS packages and instructions)
- Oracle Linux (please use the CentOS packages and instructions)
21

22
For the installations options, see [the main installation page](README.md).
23

24
### Unsupported Linux distributions and Unix-like operating systems
25 26

- Arch Linux
randx's avatar
randx committed
27
- Fedora
28
- FreeBSD
29 30
- Gentoo
- macOS
randx's avatar
randx committed
31

32
Installation of GitLab on these operating systems is possible, but not supported.
33
Please see the [installation from source guide](installation.md) and the [installation guides](https://about.gitlab.com/install/) for more information.
34

35
### Microsoft Windows
36

37 38
GitLab is developed for Linux-based operating systems.
It does **not** run on Microsoft Windows, and we have no plans to support it in the near future. For the latest development status view this [issue](https://gitlab.com/gitlab-org/gitlab-ce/issues/46567).
39
Please consider using a virtual machine to run GitLab.
40

41
## Ruby versions
randx's avatar
randx committed
42

43
GitLab requires Ruby (MRI) 2.5. Support for Ruby versions below 2.5 (2.3, 2.4) will stop with GitLab 11.6.
44

dosire's avatar
dosire committed
45
You will have to use the standard MRI implementation of Ruby.
Evan Read's avatar
Evan Read committed
46
We love [JRuby](https://www.jruby.org/) and [Rubinius](https://rubinius.com) but GitLab
47
needs several Gems that have native extensions.
randx's avatar
randx committed
48

49
## Hardware requirements
50

51 52
### Storage

53
The necessary hard drive space largely depends on the size of the repos you want to store in GitLab but as a *rule of thumb* you should have at least as much free space as all your repos combined take up.
54 55 56 57 58 59 60

If you want to be flexible about growing your hard drive space in the future consider mounting it using LVM so you can add more hard drives when you need them.

Apart from a local hard drive you can also mount a volume that supports the network file system (NFS) protocol. This volume might be located on a file server, a network attached storage (NAS) device, a storage area network (SAN) or on an Amazon Web Services (AWS) Elastic Block Store (EBS) volume.

If you have enough RAM memory and a recent CPU the speed of GitLab is mainly limited by hard drive seek times. Having a fast drive (7200 RPM and up) or a solid state drive (SSD) will improve the responsiveness of GitLab.

61 62
NOTE: **Note:** Since file system performance may affect GitLab's overall performance, we do not recommend using EFS for storage. See the [relevant documentation](../administration/high_availability/nfs.md#avoid-using-awss-elastic-file-system-efs) for more details.

63
### CPU
64

Ian Lee's avatar
Ian Lee committed
65
- 1 core supports up to 100 users but the application can be a bit slower due to having all workers and background jobs running on the same core
dosire's avatar
dosire committed
66 67 68
- **2 cores** is the **recommended** number of cores and supports up to 500 users
- 4 cores supports up to 2,000 users
- 8 cores supports up to 5,000 users
69 70 71
- 16 cores supports up to 10,000 users
- 32 cores supports up to 20,000 users
- 64 cores supports up to 40,000 users
72
- More users? Run it on [multiple application servers](https://about.gitlab.com/high-availability/)
73

74
### Memory
75

76
You need at least 8GB of addressable memory (RAM + swap) to install and use GitLab!
77
The operating system and any other running applications will also be using memory
Ahmad Sherif's avatar
Ahmad Sherif committed
78
so keep in mind that you need at least 4GB available before running GitLab. With
79 80
less memory GitLab will give strange errors during the reconfigure run and 500
errors during usage.
81

82 83
- 4GB RAM + 4GB swap supports up to 100 users but it will be very slow
- **8GB RAM** is the **recommended** memory size for all installations and supports up to 100 users
Ahmad Sherif's avatar
Ahmad Sherif committed
84 85 86 87 88
- 16GB RAM supports up to 2,000 users
- 32GB RAM supports up to 4,000 users
- 64GB RAM supports up to 8,000 users
- 128GB RAM supports up to 16,000 users
- 256GB RAM supports up to 32,000 users
89
- More users? Run it on [multiple application servers](https://about.gitlab.com/high-availability/)
90

91
We recommend having at least [2GB of swap on your server](https://askubuntu.com/a/505344/310789), even if you currently have
Chris Spicer's avatar
Chris Spicer committed
92
enough available RAM. Having swap will help reduce the chance of errors occurring
René Genz's avatar
René Genz committed
93
if your available memory changes. We also recommend [configuring the kernel's swappiness setting](https://askubuntu.com/a/103916)
94 95
to a low value like `10` to make the most of your RAM while still having the swap
available when needed.
96

Ben Bodenmiller's avatar
Ben Bodenmiller committed
97
NOTE: **Note:** The 25 workers of Sidekiq will show up as separate processes in your process overview (such as `top` or `htop`) but they share the same RAM allocation since Sidekiq is a multithreaded application. Please see the section below about Unicorn workers for information about how many you need of those.
98

99 100
## Database

101 102 103 104
The server running the database should have _at least_ 5-10 GB of storage
available, though the exact requirements depend on the size of the GitLab
installation (e.g. the number of users, projects, etc).

105 106
We currently support the following databases:

107 108 109 110
- PostgreSQL

Support for MySQL was removed in GitLab 12.1. Existing users using GitLab with
MySQL/MariaDB are advised to [migrate to PostgreSQL](../update/mysql_to_postgresql.md) before upgrading.
111

112 113
### PostgreSQL Requirements

Nick Thomas's avatar
Nick Thomas committed
114
As of GitLab 10.0, PostgreSQL 9.6 or newer is required, and earlier versions are
115
not supported. We highly recommend users to use PostgreSQL 9.6 as this
116
is the PostgreSQL version used for development and testing.
117

118 119 120 121
Users using PostgreSQL must ensure the `pg_trgm` extension is loaded into every
GitLab database. This extension can be enabled (using a PostgreSQL super user)
by running the following query for every database:

122 123 124
```
CREATE EXTENSION pg_trgm;
```
125 126 127 128

On some systems you may need to install an additional package (e.g.
`postgresql-contrib`) for this extension to become available.

129 130
#### Additional requirements for GitLab Geo

131
If you are using [GitLab Geo](../development/geo.md):
132 133 134 135 136 137

- We strongly recommend running Omnibus-managed instances as they are actively
  developed and tested. We aim to be compatible with most external (not managed
  by Omnibus) databases (for example, AWS RDS) but we do not guarantee
  compatibility.
- The
138
  [tracking database](../development/geo.md#using-the-tracking-database)
139 140 141
  requires the
  [postgres_fdw](https://www.postgresql.org/docs/9.6/static/postgres-fdw.html)
  extension.
142 143 144 145 146

```
CREATE EXTENSION postgres_fdw;
```

147 148 149 150 151 152 153 154
## Unicorn Workers

For most instances we recommend using: CPU cores + 1 = unicorn workers.
So for a machine with 2 cores, 3 unicorn workers is ideal.

For all machines that have 2GB and up we recommend a minimum of three unicorn workers.
If you have a 1GB machine we recommend to configure only two Unicorn workers to prevent excessive swapping.

155 156
As long as you have enough available CPU and memory capacity, it's okay to increase the number of unicorn workers and this will usually help to reduce the response time of the applications and increase the ability to handle parallel requests.

Ben Bodenmiller's avatar
Ben Bodenmiller committed
157
To change the Unicorn workers when you have the Omnibus package (which defaults to the recommendation above) please see [the Unicorn settings in the Omnibus GitLab documentation](https://docs.gitlab.com/omnibus/settings/unicorn.html).
158

159 160 161
## Redis and Sidekiq

Redis stores all user sessions and the background task queue.
Sytse Sijbrandij's avatar
Sytse Sijbrandij committed
162
The storage requirements for Redis are minimal, about 25kB per user.
163 164
Sidekiq processes the background jobs with a multithreaded process.
This process starts with the entire Rails stack (200MB+) but it can grow over time due to memory leaks.
Ben Bodenmiller's avatar
Ben Bodenmiller committed
165
On a very active server (10,000 active users) the Sidekiq process can use 1GB+ of memory.
166

167 168
## Prometheus and its exporters

169 170 171 172
As of Omnibus GitLab 9.0, [Prometheus](https://prometheus.io) and its related
exporters are enabled by default, to enable easy and in depth monitoring of
GitLab. Approximately 200MB of memory will be consumed by these processes, with
default settings.
173

174 175
If you would like to disable Prometheus and it's exporters or read more information
about it, check the [Prometheus documentation](../administration/monitoring/prometheus/index.md).
176

177 178 179 180 181 182 183 184 185 186 187 188
## GitLab Runner

We strongly advise against installing GitLab Runner on the same machine you plan
to install GitLab on. Depending on how you decide to configure GitLab Runner and
what tools you use to exercise your application in the CI environment, GitLab
Runner can consume significant amount of available memory.

Memory consumption calculations, that are available above, will not be valid if
you decide to run GitLab Runner and the GitLab Rails application on the same
machine.

It is also not safe to install everything on a single machine, because of the
Andrew Winata's avatar
Andrew Winata committed
189
[security reasons](https://docs.gitlab.com/runner/security/), especially when you plan to use shell executor with GitLab
190 191 192 193
Runner.

We recommend using a separate machine for each GitLab Runner, if you plan to
use the CI features.
Andrew Winata's avatar
Andrew Winata committed
194 195 196 197 198 199 200 201 202 203 204 205
The GitLab Runner server requirements depend on:

- The type of [executor](https://docs.gitlab.com/runner/executors/) you configured on GitLab Runner.
- Resources required to run build jobs.
- Job concurrency settings.

Since the nature of the jobs varies for each use case, you will need to experiment by adjusting the job concurrency to get the optimum setting.

For reference, GitLab.com's [auto-scaling shared runner](../user/gitlab_com/index.md#shared-runners) is configured so that a **single job** will run in a **single instance** with:

- 1vCPU.
- 3.75GB of RAM.
206

207
## Supported web browsers
208

209 210 211 212 213 214 215
We support the current and the previous major release of:

- Firefox
- Chrome/Chromium
- Safari
- Microsoft Edge
- Internet Explorer 11
216

217 218 219
The browser vendors release regular minor version updates with important bug fixes and security updates.
Support is only provided for the current minor version of the major version you are running.

220
Each time a new browser version is released, we begin supporting that version and stop supporting the third most recent version.
221

Ben Bodenmiller's avatar
Ben Bodenmiller committed
222
NOTE: **Note:** We do not support running GitLab with JavaScript disabled in the browser and have no plans of supporting that
223
in the future because we have features such as Issue Boards which require JavaScript extensively.
224 225 226 227 228 229 230 231 232 233 234 235

<!-- ## Troubleshooting

Include any troubleshooting steps that you can foresee. If you know beforehand what issues
one might have when setting this up, or when something is changed, or on upgrading, it's
important to describe those, too. Think of things that may go wrong and include them here.
This is important to minimize requests for support, and to avoid doc comments with
questions that you know someone might ask.

Each scenario can be a third-level heading, e.g. `### Getting error message X`.
If you have none to add when creating a doc, leave this section in place
but commented out to help encourage others to add to it in the future. -->