Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
d791b1ef
Commit
d791b1ef
authored
Mar 17, 2017
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add gitaly admin docs
parent
6c3ce620
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
89 additions
and
0 deletions
+89
-0
doc/administration/gitaly/index.md
doc/administration/gitaly/index.md
+86
-0
doc/install/installation.md
doc/install/installation.md
+3
-0
No files found.
doc/administration/gitaly/index.md
0 → 100644
View file @
d791b1ef
# Gitaly
[
Gitaly
](
https://gitlab.com/gitlab-org/gitlay
)
(
introduced
in GitLab
9.
0) is a service that provides high-level RPC access to Git
repositories. As of GitLab 9.0 it is still an optional component with
limited scope.
GitLab components that access Git repositories (gitlab-rails,
gitlab-shell, gitlab-workhorse) act as clients to Gitaly. End users do
not have direct access to Gitaly.
## Configuring Gitaly
The Gitaly service itself is configured via environment variables.
These variables are documented
[
in the gitaly
repository
](
https://gitlab.com/gitlab-org/gitaly/blob/master/doc/configuration/README.md
)
.
To change a Gitaly environment variable in Omnibus you can use
`gitaly['env']`
in
`/etc/gitlab/gitlab.rb`
. Changes will be applied
when you run
`gitlab-ctl reconfigure`
.
```
ruby
gitaly
[
'env'
]
=
{
'GITALY_MY_VARIABLE'
=>
'value'
}
```
To change a Gitaly environment variable in installations from source
you can edit
`/home/git/gitaly/env`
.
```
shell
GITALY_MY_VARIABLE
=
'value'
```
Changes to
`/home/git/gitaly/env`
are applied when you run
`service
gitlab restart`
.
## Configuring GitLab to not use Gitaly
Gitaly is still an optional componennt in GitLab 9.0. This means you
can choose to not use it.
In Omnibus you can make the following change in
`/etc/gitlab/gitlab.rb`
and reconfigure. This will both disable the
Gitaly service and configure the rest of GitLab not to use it.
```
ruby
gitaly
[
'enable'
]
=
false
```
In source installations, edit
`/home/git/gitlab/config/gitlab.yml`
and
make sure
`socket_path`
in the
`gitaly`
section is commented out. This
does not disable the Gitaly service; it only prevents it from being
used.
Apply the change with
`service gitlab restart`
.
```
yaml
gitaly
:
# socket_path: tmp/sockets/private/gitlay.socket
```
## Disabling or enabling the Gitaly service
Be careful: if you disable Gitaly without instructing the rest of your
GitLab installation not to use Gitaly, you may end up with errors
because GitLab tries to access a service that is not running.
To disable the Gitaly service in your Omnibus installation, add the
following line to
`/etc/gitlab/gitlab.rb`
:
```
ruby
gitaly
[
'enable'
]
=
false
```
When you run
`gitlab-ctl reconfigure`
the Gitaly service will be
disabled.
To disable the Gitaly service in an installation from source, add the
following to
`/etc/default/gitlab`
:
```
shell
gitaly_enabled
=
false
```
When you run
`service gitlab restart`
Gitaly will be disabled.
\ No newline at end of file
doc/install/installation.md
View file @
d791b1ef
...
@@ -483,6 +483,9 @@ the `gitaly:` section is uncommented.
...
@@ -483,6 +483,9 @@ the `gitaly:` section is uncommented.
gitaly:
gitaly:
socket_path: tmp/sockets/private/gitaly.socket
socket_path: tmp/sockets/private/gitaly.socket
For more information about configuring Gitaly see
[
doc/administration/gitaly
](
../administration/gitaly
)
.
### Setup Logrotate
### Setup Logrotate
sudo cp lib/support/logrotate/gitlab /etc/logrotate.d/gitlab
sudo cp lib/support/logrotate/gitlab /etc/logrotate.d/gitlab
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment