summaryrefslogtreecommitdiff
path: root/doc/bugs/git_annex_sync_thinks_remote__39__s_name_is_a_command/comment_5_aed072d24e216b2ab0d22faa53b4de5b._comment
blob: cd8aa02b8e33430e6ce7c9a21604bdb10b19ebe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[[!comment format=mdwn
 username="https://www.google.com/accounts/o8/id?id=AItOawlXt6nnNs-3uw61EGYtxr_AVhJqXybwLR8"
 nickname="Bruno"
 subject="Problem with the SSH Caching feature ?"
 date="2015-03-21T20:54:29Z"
 content="""
Hi,

I have a similar problem,

    $ git annex sync --content
    commit  ok
    pull origin 
    root@192.168.253.53: error while loading shared libraries: root@192.168.253.53: cannot open shared object file: No such file or directory
    fatal: Could not read from remote repository.
    
    Please make sure you have the correct access rights
    and the repository exists.
    failed

I have also verified the files paths, it seem ok, And effectively, it appear a SSH Caching feature that cause this error.

For resolve it, i have used the **@joey** solution.

I disabled the SSH Caching feature

    git config annex.sshcaching false

Here the result after disable caching feature

    $ git annex sync --content
    commit  (recording state in git...)
    ok
    pull origin 
    ok
    pull origin 
    ok
    push origin 
    Counting objects: 5, done.
    Delta compression using up to 4 threads.
    Compressing objects: 100% (4/4), done.
    Writing objects: 100% (5/5), 489 bytes | 0 bytes/s, done.
    Total 5 (delta 1), reused 0 (delta 0)
    To root@192.168.253.53:/data/samba/backup/newdocshare
    008ee7c..23e8372  git-annex -> synced/git-annex
    ok

"""]]