0

直到最近,“edeliver”一直运行良好,但现在它抛出了这个错误:

部署时出现此错误

[skipped]
==> Tarball updated!
==> Release successfully built!
    You can run it in one of the following ways:
      Interactive: _build/prod/rel/my_website123/bin/my_website123 console
      Foreground: _build/prod/rel/my_website123/bin/my_website123 foreground
      Daemon: _build/prod/rel/my_website123/bin/my_website123 start
-----> Copying release 0.1.5 to local release store
-----> Copying my_website123.tar.gz to release store
scp: /home/my_user123/my_website123/builds/rel/my_website123/releases/0.1.5/my_website123.tar.gz: No such file or directory

RELEASE BUILD OF my_website123 WAS SUCCESSFUL!

[skipped]

DEPLOYING RELEASE OF my_website123 APP TO PRODUCTION HOSTS

-----> Authorizing hosts
ls: cannot access '.deliver/releases/my_website123_*.*.tar.gz': No such file or directory
No *(s) found in local release store.
You can build one with the ./edeliver build * task.

以前,大约一个月或两周前,它运作良好。

灵丹妙药 1.4.0

而且,这里的“tput:终端属性:没有这样的设备或地址”是什么意思:

   tput: terminal attributes: No such device or address

    tput: terminal attributes: No such device or address
4

1 回答 1

1

这个错误与 Elixir 无关(和 OTP 完全无关。)

这就是 SSH,谁是野兽。由 执行的 SSH 命令之一正在edeliver尝试向终端发送一些消息。如果没有一个打开,就会发生这种情况。

尝试ssh手动到达目的地,您可能会发现问题所在。消除试图放入STDERR/的东西的根本原因STDOUT,您的部署将恢复正常。

于 2017-01-27T14:21:29.253 回答