Packet could not be sent to the server

Questions about WAPT Packaging / Requests and help regarding Wapt packages.
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Locked
GF68
Messages: 21
Registration: Oct 05, 2021 - 11:22

March 15, 2023 - 09:30

Good morning,

I'm developing a package to deploy the Adobe CC suite. I'm developing it with PyScript. During installation and uninstallation tests, everything works correctly. But when I run the build-upload, I encounter a problem I've never experienced before.

The package signing process works, although this step is quite long compared to other packages (I imagine it's due to the size of the installation files, around 26 GB). However, afterwards, according to the Python console, approximately 16 GB are sent to the server, and then the process stops with the following message:

Code: Select all

FATAL ERROR : None : None
Exit code:  3
Could this be due to the size of the package files?

Thank you in advance for your answers.

Sincerely,

Guillaume Fuchs
Server: WAPT Enterprise 2.4.0.14143 on Debian
Console: Windows 10
Infrastructure: Windows
User avatar
dcardon
WAPT Expert
Messages: 1932
Registration: June 18, 2014 - 09:58
Location: Saint Sébastien sur Loire
Contact :

March 15, 2023 - 11:13

Hi Guillaume,

have you increased the value of `client_max_body_size` in nginx? By default it's 12GB I believe, which is already quite large, but you're exceeding that. :-)

Denis
Denis Cardon - Tranquil IT
Share your experiences on WAPT! Send us your blog and article URLs in the "Your Opinion of the forum, and we'll feature them on the WAPT
GF68
Messages: 21
Registration: Oct 05, 2021 - 11:22

March 15, 2023 - 2:43 PM

Good morning,

Thank you for your reply!

I increased the client_max_body_size value and the client_body_timeout value.

This time the package seems to upload completely, but I'm still getting the error:

Code: Select all

FATAL ERROR : None : None
Exit code:  3
The upload also crashed nginx in the process.

I think I'm going to abandon the package; it seems far too heavy for the system.

Guillaume
Server: WAPT Enterprise 2.4.0.14143 on Debian
Console: Windows 10
Infrastructure: Windows
User avatar
dcardon
WAPT Expert
Messages: 1932
Registration: June 18, 2014 - 09:58
Location: Saint Sébastien sur Loire
Contact :

March 15, 2023 - 4:17 PM

Hi Guillaume,

which Linux OS version are you using? It's possible that nginx is caching in a partition that doesn't have enough disk space...

otherwise, you can upload your file using rsync/ssh and run `wapt-scanpackages` again after the upload.

For large packages like this, you need to make sure there's enough disk space available on the client machines, because with a 16GB package downloaded, then 26GB unzipped, and I think around 50GB installed, you need close to 100GB of free space on the client machine...

Best regards,

Denis
Denis Cardon - Tranquil IT
Share your experiences on WAPT! Send us your blog and article URLs in the "Your Opinion of the forum, and we'll feature them on the WAPT
jacky35
Messages: 23
Registration: Sep 17, 2020 - 5:51 p.m.

March 15, 2023 - 4:18 PM

Look here
https://www.wapt.fr/fr/doc-2.2/wapt-com ... rface.html
wapt-get sign-package c:\waptdev\tis-dropbox
wapt-get -i build-upload c:\waptdev\tis-dropbox
Locked