Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

550 Arguments too long with FTP Download

Status
Not open for further replies.

tektipsaix

Technical User
Mar 4, 2011
31
0
0
ZA
Hi All

I am trying to download the latest TL and SP for AIX 6.1 from IBM, but get the following.
Any idea how to get this fixed, or else I will have to get the IBM guys to download for me.

The Number of files is 2072.
The Total size is 9.11 GB.

$ ftp delivery04-bld.dhe.ibm.com
Connected to dispby-104.boulder.ibm.com.
220 dhebpdel04.boulder.ibm.com FTP server (Version wu-2.6.3(5) Custom Tue Jul 2 15:15:19 MDT 2013) ready.
Name (delivery04-bld.dhe.ibm.com:user1): anonymous
331 Guest login ok, send any password.
Password:
230 Guest login ok, access restrictions apply.
ftp> cd /ecc/hsb/HSDM0NDAwNjQ1XxdtgzE0Njg0MzE2NzYwNDVfb1236WR6bml2b3hwSg
250 CWD command successful.
ftp> bin
200 Type set to I.
ftp> hash
Hash mark printing on (1024 bytes/hash mark).
ftp> prompt
Interactive mode off.
ftp> ls
200 PORT command successful.
550 Arguments too long <<<< Error
ftp> mget *
550 Arguments too long <<<< Error
ftp> close
ftp> quit

Much appreciated..!
Michael


 
Are you root?
ulimits?
looks like the command argument is too long so it's a limit / ulimit problem, maybe...
HTH
 
not much you can do - the limit is on the ftp server and this depends on the os version they have.

you will probably need to do it in batches like

ls a*
ls b*
mget a*
mget b*

and sometimes even more restrictive
ls abc*

you may also be able to use wget instead of ftp -
wget ftp://dhebpdel04.boulder.ibm.com/ecc/hsb/HSDM0NDAwNjQ1XxdtgzE0Njg0MzE2NzYwNDVfb1236WR6bml2b3hwSg/*.*

Regards

Frederico Fonseca
SysSoft Integrated Ltd

FAQ219-2884
FAQ181-2886
 
Thanks People..

In "ulimit -a" only stack is not unlimited.. Cannot be increased..

Will try the wget option..

Thanks!
 
It's not an IBM server problem, or it would be shouted about all over the place - and fixed by now...
What OS are you trying to download it on?
 
fredericofonseca has answered this. Do ls or dir and see what it produces. Then do several mgets.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top