mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-22 22:22:27 +00:00
document sshd settings, fixes #545
This commit is contained in:
parent
f54f159db8
commit
b10025c6e5
1 changed files with 18 additions and 0 deletions
18
docs/faq.rst
18
docs/faq.rst
|
@ -143,6 +143,24 @@ stops after a while (some minutes, hours, ... - not immediately) with
|
||||||
That's a good question and we are trying to find a good answer in
|
That's a good question and we are trying to find a good answer in
|
||||||
`ticket 636 <https://github.com/borgbackup/borg/issues/636>`_.
|
`ticket 636 <https://github.com/borgbackup/borg/issues/636>`_.
|
||||||
|
|
||||||
|
Why am I seeing idle borg serve processes on the repo server?
|
||||||
|
-------------------------------------------------------------
|
||||||
|
|
||||||
|
Maybe the ssh connection between client and server broke down and that was not
|
||||||
|
yet noticed on the server. Try these settings:
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
|
# /etc/ssh/sshd_config on borg repo server - kill connection to client
|
||||||
|
# after ClientAliveCountMax * ClientAliveInterval seconds with no response
|
||||||
|
ClientAliveInterval 20
|
||||||
|
ClientAliveCountMax 3
|
||||||
|
|
||||||
|
If you have multiple borg create ... ; borg create ... commands in a already
|
||||||
|
serialized way in a single script, you need to give them --lock-wait N (with N
|
||||||
|
being a bit more than the time the server needs to terminate broken down
|
||||||
|
connections and release the lock).
|
||||||
|
|
||||||
The borg cache eats way too much disk space, what can I do?
|
The borg cache eats way too much disk space, what can I do?
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue