SCP During Transfer to SunOS


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting SCP During Transfer to SunOS
# 1  
Old 09-22-2010
SCP During Transfer to SunOS

Hi,

I'd like to seek your help in finding the cause of this problem. I utilize SCP command to transfer files from one server to another. I utilize the return code that SCP return so as to verify if transfer is ok or not. Below is a sample code that I created.

Code:
if scp /some/folder/sample.txt <userName>@<ipAddress>:/some/remote/path/
then
  echo "Successful"
else
  echo "Failed"
fi

This code is ok with Linux, AIX and HP-UX and it always return "Successful". But I just observed that it does not hold true when I transfer the file to SunOS (SunOS 5.9). It always return "Failed" transaction. But the file was transferred successfully to the SunOS remote server.

BTW, my staging server is running on Linux. Thanks in advance.

Last edited by Scott; 09-27-2010 at 07:56 AM.. Reason: Please use code tags
# 2  
Old 09-22-2010
Please use CODE tags when posting logic.

Please post entire output of the error without the if logic.

Code:
scp /some/folder/sample.txt <userName>@sunbox:/some/remote/path/
echo $?


what SSH implementation are you using?
# 3  
Old 09-22-2010
SSH Version: OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008

Code:
scp /some/folder/sample.txt <userName>@sunbox:/some/remote/path/
echo $?

Return code is 0
# 4  
Old 09-27-2010
Any idea? Thanks
# 5  
Old 09-27-2010
Moderator's Comments:
Mod Comment Bumping up posts without adding solid additional information is not permitted.




Posted from my Samsung Galaxy S mobile.
# 6  
Old 09-28-2010
Hi Neo,

I already provided the information that frank_rizzo asked.

Can someone crack the problem that I raised? Thanks.
# 7  
Old 09-28-2010
actually - you did not provide everything I asked for.

Quote:
Please post entire output of the error without the if logic.
add -vvv and post the ENTIRE output.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Partial File Transfer using scp

I am trying to transfer a zip file of around 30 MB in my automation script using scp from system A to B. When I manually do scp, file is complete transferred but when automation shell script runs it, zip file is not completely transferred. Stack Trace while doing manual : Executing:... (1 Reply)
Discussion started by: Shaishav Shah
1 Replies

2. AIX

Problem using scp to transfer a file

I am testing the following command to transfer a file from my server (AIX 5.2) to another server. I was able to generate the keys and sent them the public key. scp -v -P 4030 /home/lawson/.ssh/jimtest.txt someuser@some.ftpsite.net:/Inbound/jimtest.txt > jimtest_out.txt 2>&1 Based on... (3 Replies)
Discussion started by: jyoung
3 Replies

3. UNIX for Advanced & Expert Users

SCP File Transfer

On unix AIX server, when I am trying to transfer file from one directory to another directory on the same server through a program(where i call the script) it gives error "Lost Connection". (5 Replies)
Discussion started by: Pash
5 Replies

4. UNIX for Advanced & Expert Users

SCP File Transfer

I have 3 AIX server namely - Server 1 , Server 2 and Server 3. And have done SCP setup between Server 1 and Server 2 so that i dont have to give password when i transfer file from Server 1 to Server 2 by setting public key between the server. Q1. If the unix password of the target server... (3 Replies)
Discussion started by: Pash
3 Replies

5. UNIX for Advanced & Expert Users

SCP - File transfer message

Whenever I transfer file through SCP between two server it gives below given message.....Is there a way to avoid it.... Target server : newyork $ scp ABC27801.iue newyork:./iABC/x0017801.iue Message ===== This system is for the use of authorized users only. Individuals using this... (1 Reply)
Discussion started by: Pash
1 Replies

6. UNIX for Advanced & Expert Users

Transfer only modified files by SCP

Hi all, I want to transfer only modified files from one unix server to another unix sever ,tried hard but not succeeded please help me out to resolve it. The script is as below :wall: ssh user@hostname <<EOT >files.txt cd /x/y find . -mtime -0 -type f |\ while read file do echo $file... (8 Replies)
Discussion started by: tushar_spatil
8 Replies

7. UNIX for Advanced & Expert Users

scp command for file transfer

I am not able to throw a file from server173 to server067 i.e. wlsuser@server173> scp /tmp/harsha.txt wlsuser@server067:/tmp fails However, I am able to pull a file from server173 onto server067's /tmp dir wlsuser@server067> scp wlsuser@server173:/tmp/harsha.txt /tmp... (2 Replies)
Discussion started by: shifahim
2 Replies

8. Solaris

Need to transfer files over from an olds Sunos 5.6 box

Hi, I have an ancient SunOS 5.6 and I have to backup all the data onto it. I have tried connecting a tape drive but it does not boot up (something to do with its SCSI configuration I guess) when I do. So I am left with the possibility of copying files remotely from the SunOs box to another... (3 Replies)
Discussion started by: mojoman
3 Replies

9. UNIX for Dummies Questions & Answers

File transfer using SCP

I have a shell script which uses SCP command to transfer the files from one server to another server. The files are getting transferred successfully, but the problem is the files transferred to the destination server didnot have the permissions as that of the files on the source server. Command... (5 Replies)
Discussion started by: kumarm
5 Replies

10. Shell Programming and Scripting

file transfer using scp..

Hi Frdz I have a problem like. I need to transfer a file from source to destination (different systems with different IPs) using "scp" command and before transfer the file i have to check the file is available in destination or not, if it is there no need to transfer, otherwise we have to... (5 Replies)
Discussion started by: KiranKumarKarre
5 Replies
Login or Register to Ask a Question