- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ftp problem with larges files.
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2001 02:00 AM
05-15-2001 02:00 AM
ftp problem with larges files.
Excuses me for the english.
I have a probleme with the transfert of larges files (70 Mo) using ftp, from a machine(remote host A) to a server 9000 under HP-UX.11.00.(local host B).
the transfert from A to B begins at 17h46 and stop at 20h58. the syslog.log file of the local host says "exiting on signal 14". and on A there is a message:"connection reset by peer, connection closed by remote host"(B)
is it a question of timeout?. On B, the idle parameter= 900.(max =7200 sec)
What the probleme? should I cut the larges files before the ftp? or there is a solution to transfert the larges files?
Thanks for all
Thomas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2001 02:12 AM
05-15-2001 02:12 AM
Re: ftp problem with larges files.
compress the file at A and use ftp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2001 02:18 AM
05-15-2001 02:18 AM
Re: ftp problem with larges files.
or
#compress file
I you have multiples files tar cvf and after compress or gzip.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2001 03:13 AM
05-15-2001 03:13 AM
Re: ftp problem with larges files.
so there is a pb on the HP server? or on the remote host A?
Thanks for all
Thomas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2001 05:59 AM
05-15-2001 05:59 AM
Re: ftp problem with larges files.
I suposse that the problem is in the remote host A because the host B logs that connection closed by peer.
Host A might have a parameter like session max time or something.
If host A is a Unix system you can use split to break the file in smaller files.
Best regards
JGM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2001 06:01 AM
05-15-2001 06:01 AM
Re: ftp problem with larges files.
#sar -v 5 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2001 06:20 AM
05-15-2001 06:20 AM
Re: ftp problem with larges files.
Tar uses no compression, so a *.tar file is not compressed. You have to use gzip or compress to reduce this file in size. Which should give you a *.tar.gz or *.tar.Z file.
Hope this helps. Stefan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2001 06:25 AM
05-15-2001 06:25 AM
Re: ftp problem with larges files.
It may be that you are running out of space in the file system that you are sending the file to. This space can either be inodes or file space. You can do a bdf -i to see if space is available.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2001 06:27 AM
05-15-2001 06:27 AM
Re: ftp problem with larges files.
Try rcp command instead of ftp.
Vinoth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2001 06:37 AM
05-15-2001 06:37 AM
Re: ftp problem with larges files.
for information, the transfert is made by a ISDN line, and after a another test, the ftp transfert seems to be good for the moment. It was may be a ISDN line probleme between the 2 ISDN routers.
Thanks for all and for your speed to answer.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2001 12:29 PM
05-15-2001 12:29 PM
Re: ftp problem with larges files.
Look at in both machines if you have the arpa lan and ftp patches news installed.
God luck,
Valkiria
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2001 12:44 PM
05-15-2001 12:44 PM
Re: ftp problem with larges files.
Commands :
tar -cvf
tar -xvf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2001 05:05 AM
05-16-2001 05:05 AM
Re: ftp problem with larges files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2001 06:08 AM
05-16-2001 06:08 AM
Re: ftp problem with larges files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2001 07:29 AM
05-16-2001 07:29 AM
Re: ftp problem with larges files.
1) Compress the file. In this example I will call
the compressed file "myfile.tar.Z".
2) Use split to break the file into smaller files:
split -b 5m myfile.tar.Z mysplit
For a 70MB file this will create 14 files,
each one 5MB in size. They will be called
mysplitaa, mysplitab, mysplitac, etc.
3) Ftp these small files (in binary) from A to B.
If your problem is a timing issue, in that 70MB
takes too long to transfer, these 5MB files should
ftp Ok.
4) Once all files have been ftp'ed from A to B
rejoin them:
cat mysplit* > myfile.tar.Z
5) Now you can uncompress myfile.tar.Z and untar
it on B. (Don't forget to delete the small 5MB files
after you have rejoined them into myfile.tar.Z)
I hope this helps!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2001 09:06 AM
05-16-2001 09:06 AM
Re: ftp problem with larges files.
If the "problem" starts happening again, I would suggest you look at the TCP statistics on the sending system - in particular look and see if/how the TCP retransmit stats are increasing and what percentage of the number of data segments they happen to be.
On the receiving side, you would look for "out of order" segments and perhaps duplicate segments. You might also look for TCP checksum failures.
It might also be nice to know what the ping times are between the two systems while the FTP transfer is taking place. Try a ping with a count of 100 and see what the loss rate happens to be.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2001 11:17 AM
05-17-2001 11:17 AM
Re: ftp problem with larges files.
For me you can be having problems in the network.
It verifies first if the lan adapter and switch are talking in fullduplex mode and autonegociation off.
Later it tries to change of switch port.
Later test using a new network cable.
And finally the problem can be the network lan adapter, change it.
Send to me the folowing commands :
# lanadmin / lan / display
# lanadmin -x
# lanadmin -I
and
# netstat -I
You must verify the fields "inboud errors", "outbound errors" and "FCS
errors ( frame check sequence )"
I wait to have helped !