I'm trying to download about 20GB of data with ftp with my personal account (no scp available and taring is not possible).
I'm using the following standard command:
wget -m ftp://user:pass@host.com/db/
It works some time and then fails while authenticating for a download.
When trying to connect with a ftp client to the server, it will respond with:
530 Sorry, the maximum number of clients (15) for this user are already connected.
So it seems like wget opens many connections. Is it possible to use only one connection to the server with wget?
