5

我正在尝试使用 rsync 和 makefile 将 Mac 上的本地文件发布到我的服务器。运行 make 命令时出现以下错误:

rsync: Failed to exec ssh: No such file or directory (2)  
rsync error: error in IPC code (code 14) at /SourceCache/rsync/rsync-42/rsync/pipe.c(86)   [sender=2.6.9]  
rsync: connection unexpectedly closed (0 bytes received so far) [sender]  
rsync error: error in IPC code (code 14) at /SourceCache/rsync/rsync-42/rsync/io.c(452) [sender=2.6.9]  
make: *** [deploy] Error 14  

奇怪的是,如果我直接在 shell 中输入 rsync 命令,它将起作用。

这是makefile中有趣的部分:

USER = admin  
SERVER = 92.243.xx.xx  
PATH = d_ghost1/www/sub.domain.de/htdocs/  

deploy:  
    /usr/bin/rsync -avz \  
    --exclude '.git*' \  
    --exclude '.DS*' \  
    --exclude '*.log' \  
    --exclude 'config.ini\*' \  
    --exclude 'backend/config.ini\*' \  
    ./{assets,backend,frontend,templates,waffle} $(USER)@$(SERVER):$(PATH)  

任何人都可以理解这一点吗?谢谢,卢茨

4

2 回答 2

8

我最近在 Ubuntu 18.04 docker 映像上遇到了同样的错误。按照这里的建议安装 openssh-client 包,为我解决了问题。

sudo apt install -y openssh-client

于 2019-02-14T08:06:42.950 回答
0

如果您将局部变量 PATH 重命名为 REMPATH 之类的名称,您将不会干扰系统的 PATH 变量(指示在哪里查找可执行文件),并且希望一切都如您所愿......

于 2014-01-18T15:25:06.093 回答