1825882 Members
2854 Online
109689 Solutions
New Discussion

ftp/server problem

 
joseph wholey
Regular Advisor

ftp/server problem

For network benchmarking purposes, I'm attempting to ftp data from AIX5.3 to a RHEL4 Linux server. Below is the command as well as the message I recieve:

put "|dd if=/dev/zero bs=32k count=10000" /dev/null


dd: 0511-053 The write failed.
: There is no process to read data written to a pipe.
wait: There are no child processes.

Any ideas? Again: Intermittently. Which side does not have a process to read data written to a pipe and why?

Regards, Joe
7 REPLIES 7
Steven E. Protter
Exalted Contributor

Re: ftp/server problem

Shalom,

FTP server security specifically prevents the running of commands.

To properly guage throughput you must upload/download actual files, not try and create them on the fly.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
joseph wholey
Regular Advisor

Re: ftp/server problem

Shalom to you Steven. That is not an accurate statement you've made. I get this same message when I attempt file transfers as well. And as stated in the original post, this does work intermittently.

Regards, Joe
skt_skt
Honored Contributor

Re: ftp/server problem

check if you are affecting with any time out settings.. That error sounds like the source/read side process no more exists.

ftp server time out is 15 min while at the client side it is 2 hours(all values defualt; man ftpd)
joseph wholey
Regular Advisor

Re: ftp/server problem

The strange part is, that the transfer never starts. The message appears immediately.
Nicholas Noor_1
Occasional Advisor

Re: ftp/server problem

You haven't specified where the disk dump needs to start from and also that you have no mentioned the data content as you have mentioned zero and null in both cases, to void these, you have to have values of data. If you have data and still have problems with dd, then you may be missing parameters with put and it can only hold throughput based on the protocol you use and block size as well depends on it.

There are still more parameters that need to be added and eliminated.. this is one of them.

But make sure you have permissions as well.
skt_skt
Honored Contributor

Re: ftp/server problem

Let me ask very basic question... How is the ftp process response if you attempt a normal/manual one between these servers?
joseph wholey
Regular Advisor

Re: ftp/server problem

The network performance is not that good.. 26MB/sec over a gigabit pipe. The reason I use the above command is to rule out "disk lag".
Again, let me reiterate, ftp works intermittently between these two servers. Actually, it works more often than not. I'm trying to pin-point what could be going on (either source or destination) that is generating that error.