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

M
Marin Jankovski 已提交
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.

M
Marin Jankovski 已提交
10
## Operating Systems
11

12
### Supported Linux distributions
R
randx 已提交
13

14
- Ubuntu (16.04/18.04/20.04)
15 16 17
- Debian (8/9/10)
- CentOS (6/7/8)
- openSUSE (Leap 15.1/Enterprise Server 12.2)
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 installation options, see [the main installation page](README.md).
23

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

- Arch Linux
R
randx 已提交
27
- Fedora
28
- FreeBSD
29 30
- Gentoo
- macOS
R
randx 已提交
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
GitLab is developed for Linux-based operating systems.
38
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/-/issues/22337).
39
Please consider using a virtual machine to run GitLab.
40

41
## Software requirements
R
randx 已提交
42

43
### Ruby versions
44

45
GitLab requires Ruby (MRI) 2.6. Beginning in GitLab 12.2, we no longer support Ruby 2.5 and lower.
46 47

You must use the standard MRI implementation of Ruby.
48
We love [JRuby](https://www.jruby.org/) and [Rubinius](https://github.com/rubinius/rubinius#the-rubinius-language-platform), but GitLab
49
needs several Gems that have native extensions.
R
randx 已提交
50

51 52
### Go versions

53
The minimum required Go version is 1.13.
54 55 56

### Git versions

57 58
From GitLab 13.1:

59 60
- Git 2.24.x and later is required.
- Git 2.28.x and later [is recommended](https://gitlab.com/gitlab-org/gitaly/-/issues/2959).
61 62 63

### Node.js versions

64 65
Beginning in GitLab 12.9, we only support Node.js 10.13.0 or higher, and we have dropped
support for Node.js 8. (Node.js 6 support was dropped in GitLab 11.8)
66

67
We recommend Node 12.x, as it's faster.
68 69

GitLab uses [webpack](https://webpack.js.org/) to compile frontend assets, which requires a minimum
70
version of Node.js 10.13.0.
71

72
You can check which version you're running with `node -v`. If you're running
73
a version older than `v10.13.0`, you need to update it to a newer version. You
74
can find instructions to install from community maintained packages or compile
75
from source at the [Node.js website](https://nodejs.org/en/download/).
76

77
### Redis versions
78

79 80 81 82
GitLab 13.0 and later requires Redis version 4.0 or higher.

Redis version 5.0 or higher is recommended, as this is what ships with
[Omnibus GitLab](https://docs.gitlab.com/omnibus/) packages starting with GitLab 12.7.
83

84
## Hardware requirements
85

86 87
### Storage

88
The necessary hard drive space largely depends on the size of the repositories you want to store in GitLab but as a *rule of thumb* you should have at least as much free space as all your repositories combined take up.
89

90
If you want to be flexible about growing your hard drive space in the future consider mounting it using [logical volume management (LVM)](https://en.wikipedia.org/wiki/Logical_volume_management) so you can add more hard drives when you need them.
91 92 93

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.

94
If you have enough RAM 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.
95

96
NOTE: **Note:**
97
Since file system performance may affect GitLab's overall performance, [we don't recommend using AWS EFS for storage](../administration/nfs.md#avoid-using-awss-elastic-file-system-efs).
98

99
### CPU
100

101
CPU requirements are dependent on the number of users and expected workload. Your exact needs may be more, depending on your workload. Your workload is influenced by factors such as - but not limited to - how active your users are, how much automation you use, mirroring, and repo/change size.
C
Cody West 已提交
102

103 104 105 106
The following is the recommended minimum CPU hardware guidance for a handful of example GitLab user base sizes.

- **4 cores** is the **recommended** minimum number of cores and supports up to 500 users
- 8 cores supports up to 1000 users
107
- More users? Consult the [reference architectures page](../administration/reference_architectures/index.md)
108

109
### Memory
110

111
Memory requirements are dependent on the number of users and expected workload. Your exact needs may be more, depending on your workload. Your workload is influenced by factors such as - but not limited to - how active your users are, how much automation you use, mirroring, and repo/change size.
C
Cody West 已提交
112

113
The following is the recommended minimum Memory hardware guidance for a handful of example GitLab user base sizes.
114

115 116 117
- **4GB RAM** is the **required** minimum memory size and supports up to 500 users
  - Our [Memory Team](https://about.gitlab.com/handbook/engineering/development/enablement/memory/) is working to reduce the memory requirement.
- 8GB RAM supports up to 1000 users
118
- More users? Consult the [reference architectures page](../administration/reference_architectures/index.md)
119

120 121 122
In addition to the above, we generally recommend having at least 2GB of swap on your server,
even if you currently have enough available RAM. Having swap will help reduce the chance of errors occurring
if your available memory changes. We also recommend configuring the kernel's swappiness setting
123
to a low value like `10` to make the most of your RAM while still having the swap
124 125
available when needed.

126 127
## Database

128 129
PostgreSQL is the only supported database, which is bundled with the Omnibus GitLab package.
You can also use an [external PostgreSQL database](https://docs.gitlab.com/omnibus/settings/database.html#using-a-non-packaged-postgresql-database-management-server).
130 131
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.
132

133 134
### PostgreSQL Requirements

135 136 137
The server running PostgreSQL should have _at least_ 5-10 GB of storage
available, though the exact requirements [depend on the number of users](../administration/reference_architectures/index.md).

138 139 140 141 142 143
We highly recommend users to use the minimum PostgreSQL versions specified below as these are the versions used for development and testing.

GitLab version | Minimum PostgreSQL version
-|-
10.0 | 9.6
12.10 | 11
144
13.0 | 11
145

146 147
You must also ensure the `pg_trgm` and `btree_gist` extensions are [loaded into every
GitLab database](postgresql_extensions.html).
148

149 150
NOTE: **Note:**
Support for [PostgreSQL 9.6 and 10 has been removed in GitLab 13.0](https://about.gitlab.com/releases/2020/05/22/gitlab-13-0-released/#postgresql-11-is-now-the-minimum-required-version-to-install-gitlab) so that GitLab can benefit from PostgreSQL 11 improvements, such as partitioning. For the schedule of transitioning to PostgreSQL 12, see [the related epic](https://gitlab.com/groups/gitlab-org/-/epics/2184).
151

152 153
#### Additional requirements for GitLab Geo

154
If you're using [GitLab Geo](../administration/geo/replication/index.md):
155 156 157

- We strongly recommend running Omnibus-managed instances as they are actively
  developed and tested. We aim to be compatible with most external (not managed
158
  by Omnibus) databases (for example, [AWS Relational Database Service (RDS)](https://aws.amazon.com/rds/)) but we don't guarantee compatibility.
159

160
## Puma settings
161

162 163 164
The recommended settings for Puma are determined by the infrastructure on which it's running.
Omnibus GitLab defaults to the recommended Puma settings. Regardless of installation method, you can
tune the Puma settings.
165

166
If you're using Omnibus GitLab, see [Puma settings](https://docs.gitlab.com/omnibus/settings/puma.html)
167
for instructions on changing the Puma settings. If you're using the GitLab Helm chart, see the [Webservice chart](https://docs.gitlab.com/charts/charts/gitlab/webservice/index.html).
168

169
### Puma workers
170

171
The recommended number of workers is calculated as the highest of the following:
172

173 174
- `2`
- Number of CPU cores - 1
175

176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
For example a node with 4 cores should be configured with 3 Puma workers.

You can increase the number of Puma workers, providing enough CPU and memory capacity is available.
A higher number of Puma workers will usually help to reduce the response time of the application
and increase the ability to handle parallel requests. You must perform testing to verify the
optimal settings for your infrastructure.

### Puma threads

The recommended number of threads is dependent on several factors, including total memory, and use
of [legacy Rugged code](../development/gitaly.md#legacy-rugged-code).

- If the operating system has a maximum 2 GB of memory, the recommended number of threads is `1`.
  A higher value will result in excess swapping, and decrease performance.
- If legacy Rugged code is in use, the recommended number of threads is `1`.
191
- In all other cases, the recommended number of threads is `4`. We don't recommend setting this
192 193
higher, due to how [Ruby MRI multi-threading](https://en.wikipedia.org/wiki/Global_interpreter_lock)
works.
194

195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
## Unicorn Workers

For most instances we recommend using: (CPU cores * 1.5) + 1 = Unicorn workers.
For example a node with 4 cores would have 7 Unicorn workers.

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.

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.

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).

211 212 213
## Redis and Sidekiq

Redis stores all user sessions and the background task queue.
S
Sytse Sijbrandij 已提交
214
The storage requirements for Redis are minimal, about 25kB per user.
215 216
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.
B
Ben Bodenmiller 已提交
217
On a very active server (10,000 active users) the Sidekiq process can use 1GB+ of memory.
218

219 220
## Prometheus and its exporters

221 222 223 224
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.
225

226 227
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).
228

229 230 231 232 233 234 235
## 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.

236
Memory consumption calculations, that are available above, won't be valid if
237 238 239
you decide to run GitLab Runner and the GitLab Rails application on the same
machine.

240
It's also not safe to install everything on a single machine, because of the
A
Andrew Winata 已提交
241
[security reasons](https://docs.gitlab.com/runner/security/), especially when you plan to use shell executor with GitLab
242 243 244 245
Runner.

We recommend using a separate machine for each GitLab Runner, if you plan to
use the CI features.
A
Andrew Winata 已提交
246 247 248 249 250 251 252 253 254 255 256 257
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.
258

B
Ben Bodenmiller 已提交
259
## Supported web browsers
260

261 262
CAUTION: **Caution:**
With GitLab 13.0 (May 2020) we have removed official support for Internet Explorer 11.
263

264
GitLab supports the following web browsers:
265

266
- [Mozilla Firefox](https://www.mozilla.org/en-US/firefox/new/)
267 268 269
- [Google Chrome](https://www.google.com/chrome/)
- [Chromium](https://www.chromium.org/getting-involved/dev-channel)
- [Apple Safari](https://www.apple.com/safari/)
270
- [Microsoft Edge](https://www.microsoft.com/en-us/edge)
271

272
For the listed web browsers, GitLab supports:
273

274
- The current and previous major versions of browsers.
275
- The current minor version of a supported major version.
276

277 278
NOTE: **Note:**
We don't support running GitLab with JavaScript disabled in the browser and have no plans of supporting that
279
in the future because we have features such as Issue Boards which require JavaScript extensively.
280 281 282 283 284 285 286 287 288 289 290 291

<!-- ## 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. -->