scp command for file transfer


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users scp command for file transfer
# 1  
Old 10-11-2011
Question scp command for file transfer

I am not able to throw a file from server173 to server067

i.e.

Code:
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

Code:
wlsuser@server067> scp wlsuser@server173:/tmp/harsha.txt /tmp
wlsuser's Password:
harsha.txt           100% |***********************************************************************************************************|    49       00:00

Is this becoz of the way keys are setup for wlsuser profile wlsuser@server173>

Can you explain me what needs to be done inorder to get the visa versa working ?

I need

Code:
wlsuser@server173> scp /tmp/harsha.txt wlsuser@server067:/tmp

to work

where should i generate the keys and where should I import the public key ?
# 2  
Old 10-11-2011
https://www.unix.com/unix-linux-appli...eneration.html

Source got from browsing ..
Code:
Creating a key 
 
Use ssh-keygen. I recommend the '-t rsa' option, which creates an RSA key 
for use with version 2 of the SSH protocol. (You can use '-t rsa1' for a 
version 1 key and '-t dsa' for a DSA key, which may not be supported 
everywhere.) 
Note that with SSH1 there is no -t option, because there's only one type 
of key. 
 
Running ssh-keygen 
 
$ ssh-keygen -t rsa 
Generating public/private rsa key pair. 
Enter file in which to save the key (/home/user/.ssh/id_rsa): [press enter for default] 
Enter passphrase (empty for no passphrase): [not shown] 
Enter same passphrase again: [not shown] 
Your identification has been saved in /home/user/.ssh/id_rsa. 
Your public key has been saved in /home/user/.ssh/id_rsa.pub. 
The key fingerprint is: 
44:c8:07:c9:f8:f4:f5:9b:05:d1:0f:d1:05:f0:5d:bf user@localhost 
$ 
 
Allowing login via that key 
On the remote host, add the line in /home/user/.ssh/id_rsa.pub to 
~/.ssh/authorized_keys. 
 
Quick approach 
 
$ scp ~/.ssh/id_rsa.pub somehost:. 
user@somehost's password: [not shown] 
id_rsa.pub           100% |*****************************|   225 00:00 
$ ssh somehost 
user@somehost's password: [not shown] 
somehost$ cat id_rsa.pub >> ~/.ssh/authorized_keys 
somehost$ rm id_rsa.pub 
somehost$ exit 
$ ssh somehost 
Enter passphrase for key '/home/user/.ssh/id_rsa': [not shown] 
somehost$

# 3  
Old 10-11-2011
Error

Hi,

Can you reply with my server-names in mind to help me understand better.

I created keys using

wlsuser@server173> ssh-keygen -b 2048 -t rsa

it gave me two files

id_rsa
id_rsa.pub

Then, I copied the contents of "id_rsa.pub" to the "authorized_keys" of server067.

Did not restart anything and tried this command

Code:
wlsuser@server173> scp /tmp/harsha.txt wlsuser@server067:/tmp

It still does not work.

What am I missing ?
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. Shell Programming and Scripting

scp command for multiple file transfer.

FILE_LIST="{a.txt,b.txt,cal*}" scp -r $..$REMOTE_PATH$FILE_LIST $LOCAL_PATH This script passes only when all the three files are transfere, wat if only two file are transfered, but still I was to make the return code as pass. is it possible. (2 Replies)
Discussion started by: sangea
2 Replies

7. 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

8. 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

9. UNIX for Advanced & Expert Users

UNIX - SCP File Transfer

Hi, How do i know if the files are transferred succesfully when i use SCP to transfer files between 2 servers. One more is i am trying to send all the files in a single shot by using * to save the connection time. So can i know when the scp breakes in the middle scp $sourcepath/*... (9 Replies)
Discussion started by: vijaykrc
9 Replies

10. Shell Programming and Scripting

SCP file transfer command on solaris

I need to transfer multiple files using SCP between two solaris machines. Can somebody explain how to achieve that ? (3 Replies)
Discussion started by: parthum
3 Replies
Login or Register to Ask a Question