在 Vagrant 上的标头中读取错误(对等方重置连接)

在 Vagrant 上的标头中读取错误(对等方重置连接)

尝试将 aaPanel 安装到 vagrant 机器中。使用的 vagrant box 是 Scotch box 3.5,预装了 php v7.0。我使用 sury 的 ppa 将 php 更新到 v7.4,运行正常。

我已经使用过给出的说明这里,并使用给定的 Ubuntu 特定命令。

buntu/Deepin :

    wget -O install.sh http://www.aapanel.com/script/install-ubuntu_6.0_en.sh && sudo bash install.sh

命令一开始运行不正确,然后我尝试wget添加用户代理。

sudo wget -l1 -U "Mozilla/5.0 (X11; Linux i686 (x86_64)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.75 Safari/537.36"  -O install.sh http://www.aapanel.com/script/install-ubuntu_6.0_en.sh && sudo bash install.sh

然后它有点工作正常,但在中间,我遇到了另一个问题。(实际上是相同的错误消息)

(try: 6)  http://download.bt.cn/src/Python-3.7.8.tar.xz
Connecting to download.bt.cn (download.bt.cn)|103.224.251.67|:80... connected.
HTTP request sent, awaiting response... Read error (Connection reset by peer) in headers.
Retrying.

错误

HTTP request sent, awaiting response... Read error (Connection reset by peer) in headers.
    Retrying.

在我添加用户代理之前就存在了。所以我认为wget在 install.sh 文件中添加用户代理可以解决这个问题,但遗憾的是没有。

这是最终的错误信息

ERROR: Download python source code fielded.
Ubuntu 16.04.2 LTS
 \l
Bit:64 Mem:992M Core:1
Linux scotchbox 4.4.0-75-generic #96-Ubuntu SMP Thu Apr 20 09:56:33 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux

我怎样才能解决这个问题?

相关内容