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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
a2e4c7d4
Commit
a2e4c7d4
authored
May 05, 2021
by
Will Chandler
Committed by
Evan Read
May 05, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Docs: Add note on TCP requirement for existing Gitaly
parent
6b180506
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
doc/administration/gitaly/praefect.md
doc/administration/gitaly/praefect.md
+21
-0
No files found.
doc/administration/gitaly/praefect.md
View file @
a2e4c7d4
...
...
@@ -874,6 +874,27 @@ Particular attention should be shown to:
repository that viewed. If the project is created, and you can see the
README file, it works!
#### Use TCP for existing GitLab instances
When adding Gitaly Cluster to an existing Gitaly instance, the existing Gitaly storage
must use a TCP address. If
`gitaly_address`
is not specified, then a Unix socket is used,
which will prevent the communication with the cluster.
For example:
```
ruby
git_data_dirs
({
'default'
=>
{
'gitaly_address'
=>
'tcp://old-gitaly.internal:8075'
},
'cluster'
=>
{
'gitaly_address'
=>
'tcp://<load_balancer_server_address>:2305'
,
'gitaly_token'
=>
'<praefect_external_token>'
}
})
```
See
[
Mixed Configuration
](
configure_gitaly.md#mixed-configuration
)
for further information on
running multiple Gitaly storages.
### Grafana
Grafana is included with GitLab, and can be used to monitor your Praefect
...
...
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