Unix FTP error


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Unix FTP error
# 1  
Old 03-09-2010
Unix FTP error

Hai

I have made a directory compression using TAR command.

the size of the file is 1247388160bytes.

when i ftp this file to another server it is throwing error like

Code:
200 PORT command successful.
150 Opening ASCII mode data connection for old_versions.tar.gz.
netout: Broken pipe
421 Service not available, remote server has closed connection
ftp> bye

What will be reason?

Kindly help

sen

Last edited by pludi; 03-09-2010 at 02:22 AM.. Reason: code tags, please...
# 2  
Old 03-09-2010
Check the free space available in the remote machine .what OS ur using ?

Code:
With a full file system ftp fails in different ways between
the put and get commands. The get command reports that no more space is left
but does not disconnect the session when the disk was full. The other case 
is the put command where ftp says that the pipe is broken, Service is not
available, remote server has closed connection. FTP is then
disconnected.

# 3  
Old 03-09-2010
SunOS 5.8

SunOS 5.8

how to overcome this solution..? Kindly help

Sen
# 4  
Old 03-09-2010
Check the space avialable in the target path on the remote machine to which you are trying to ftp the file . If enough space is not avilable the free some space in that file system

Last edited by amitranjansahu; 03-09-2010 at 02:48 AM.. Reason: typo
# 5  
Old 03-09-2010
how to find space available for the user..?

i login using POPDEV

kindly help

S
# 6  
Old 03-09-2010
df command

Code:
df -k or df -h

# 7  
Old 03-09-2010
File is just over one gigabyte. Assuming ftp normally works, size could be an issue.

As this is a not a text file, transfer mode should be "binary" not "ascii".
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Perl: ERROR in FTP in UNIX

Hi all I am using this FTP Script my $envir = $ENV{ECR_ENV}; if ($envir eq 'dev') { open FTP, "|ftp -n $ftpHost" or die "Problem with ftp to $ftpHost\n"; print FTP "user $ftpUser $ftpPass\n"; print FTP "lcd $archPath \n"; print FTP "put $outFileName \n"; ... (4 Replies)
Discussion started by: parthmittal2007
4 Replies

2. Shell Programming and Scripting

FTP from windows to unix server using unix shell script

Hi, Is it possible to ftp a huge zip file from windows to unix server using unix shell scripting? If so what command i need to use. thanks in advance. (1 Reply)
Discussion started by: Shri123
1 Replies

3. Shell Programming and Scripting

UNIX script to FTP file from UNIX server to windows

Hi, I am new to this subject.....Can someone please help me out with the script... unix usernm "sdhftst" unix pwd "chsd13" windows usernm "dfghtst" windows pwd "chsd13" path..../xxx/xxxxx/xxxxxx/xxxxxxx please can u get me a script...its only one file to get ftp. Thanks... (2 Replies)
Discussion started by: himakiran9
2 Replies

4. Shell Programming and Scripting

ftp from windows to unix using a perl script on unix machine

i need to ftp a file from windows to a unix machine by executing a sript(perl/shell/php) from that unix machine.i can also use HTML and javascript to build forms. (3 Replies)
Discussion started by: raksha.s
3 Replies

5. UNIX for Advanced & Expert Users

MVS->Unix FTP : Using chmod as part of FTP.

We are transferring file from mainframes to unix, & in FTP process itself we would like to set access rights for unix machine. Has anyone used chmod command in association with site command in ftp? How it should be used? Thanks in advance. (1 Reply)
Discussion started by: videsh77
1 Replies

6. Shell Programming and Scripting

FTP script to FTP file to UNIX - Solaris

Hello, A couple of times per week, i receive emails notifications when files are available for processing. Currently i read these eamails with a java program and store the attachement on my C: drive and would now like to generate a PC script to send this file name up to UNIX-Solaris and... (3 Replies)
Discussion started by: bobk544
3 Replies

7. Shell Programming and Scripting

FTP script for sending a file from one unix directory to another unix server director

Hi, My local server is :/usr/abcd/ Remote server is :/Usr/host/test/ I want to send files from local unix directory(All files starting with O_999) to remote host unix directory. Can any body give me the Unix Shell script to do this. One more doubt: Shall we need to change the file... (1 Reply)
Discussion started by: raja_1234
1 Replies

8. HP-UX

URGENT: UNIX FTP cannot find path error

Dear all We are currently working on to install some ERP system in wjhich we need to FTP from unix to windows 2000 machine We run ./lodrun to get files from d/xxxxx/xxxx directory but the ftpoutput.log file shows following error FTP: xxxxxxxxx system cannot find the path specified... (1 Reply)
Discussion started by: minix
1 Replies

9. UNIX for Advanced & Expert Users

FTP - Sco Unix to ProFTPD Error

First off I did try google for help on this topic, didn't really find anything. When I try to ftp from my SCO Unix box (SCO_SV servername 3.2 5.0.5 i386) to a proFTPD server within my company I get this error Connected to 10.?.?.?. 220 ProFTPD Server ftp.hostname.com Name (10.?.?.?:root):... (1 Reply)
Discussion started by: whegra
1 Replies

10. UNIX for Advanced & Expert Users

unix ftp error msg help

we have two alpha stations which are connected on two sides on the same wan (64k leased line), here is one problem described as follow. when i do a ftp to copy a file form one to another, an error mesg shown and the file lenth is 0 at last. diamond> ftp 192.168.50.1 Connected to... (1 Reply)
Discussion started by: royxiao
1 Replies
Login or Register to Ask a Question