Not able to transfer files using between server A and B

 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Not able to transfer files using between server A and B
# 1  
Old 12-07-2017
Not able to transfer files using between server A and B

Hi All,

I have generated public and private pair to avoid to enter password manually while sending files through sftp.

But still I am facing issues and every-time prompt asking enter password.

Below are steps I fallowed to make ssh connection between two servers.

1. Generated public and private key pair
2. Given permission on .ssh directory and on both keys
3. Copied public key in target server and setup permission to 700
4. Tried to login using ssh from source server to target server using below command. And it's returned to Target server
ssh id@host
5. After step i exit from target server and tried to login using sftp

After completion step-5 it's still asking to enter password while connecting the server.

Can someone please help me to resolve this issue.

Regards,
Renu
# 2  
Old 12-07-2017
You don't want 700 on your keys, you want 700 on the directory. The keys should have 600.
# 3  
Old 12-07-2017
Quote:
Originally Posted by renukeswar
.
.
.
3. Copied public key in target server and setup permission to 700
Where (which path) did you copy it to? Which permissions did you set? Why 700?

Quote:
4. Tried to login using ssh from source server to target server using below command. And it's returned to Target server
ssh id@host
.
.
.
Do I read that you can connect interactively to the server?

Try the sftp with multiple -v (verbose) options and post the log.
# 4  
Old 12-07-2017
Hi Corona688 and Rudic, Thanks for your response, after changed permission on keys folder connection established between both servers.

But now I am not able to use cd in my script.

Code:
Error cd:0403-010 A specified flag is not a valid for this command.

Command I am using after connection established sftp is cd /path but it's not working.
Can you please help on this resolve this?

Regards,
Renu

Moderator's Comments:
Mod Comment Please use CODE tags as required by forum rules!

Last edited by RudiC; 12-08-2017 at 03:57 AM.. Reason: Added CODE tags.
# 5  
Old 12-07-2017
Without seeing your code, I have no idea why its doing that.

Please show your code.
# 6  
Old 12-08-2017
Hi Corona, Thanks for the response.

Now code is working fine after put << EOF in below line.

sftp user@xx.xx.xx.xx << EOF.
This User Gave Thanks to renukeswar For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell scripting to transfer files from one to another server through ftps

Hi Guyz ,, I'm an ERP functional guy , I really need to automate a script which required a shell script but have a little knowledge in shell scripting. I need my generated files to be zipped first in one directory lets say (xyz) and then it needs to transfer another ftp server in... (3 Replies)
Discussion started by: Shogundion
3 Replies

2. Shell Programming and Scripting

Transfer files from one server with bash script

Hello to all, I want to copy from one server to another files of last 24 hours with size between 500MB and 2GB. The code below searches last files in 24 hours. find . -mtime -1 In order to copy faster I'd like to compress the files before copying them. How to automate the process of... (8 Replies)
Discussion started by: Ophiuchus
8 Replies

3. Shell Programming and Scripting

Do I require remote login access to a windows server to transfer files from a UNIX server

Hi All I need to transfer a file from a UNIX server to a windows server. I saw that it is possible to do this using scp command by looking at the forum listed below: ... (2 Replies)
Discussion started by: vx04
2 Replies

4. Shell Programming and Scripting

Help with script to transfer files from one server to another

Hi I have the following script: #!/bin/sh set -x touch -mt 201210040000 /tmp/ref1 touch -mt 201210042359 /tmp/ref2 find /fs1/bscsrtx/BSCS_ix/WORK/LOG -type f \( -newer /tmp/ref1 -a ! -newer /tmp/ref2 \) > file_lst scp $(< file_lst) root@10.100.48.76:/ano2005/fs1_2015/LOG/ but somehow its... (7 Replies)
Discussion started by: fretagi
7 Replies

5. Shell Programming and Scripting

SFTP to transfer files from one server to another

Hello, i have to write a script to perform sftp from the remote server to another server. the files which are at the remote location are huge data log files which should be transfered to my server in a particular folder. could you please provide me the general code (simple )... (1 Reply)
Discussion started by: urfrnddpk
1 Replies

6. Shell Programming and Scripting

Unable to transfer files from Windows 2000 Server to Sun Solaris..

Dear Friends, I need to transfer few files from a Windows 2000 server to Sun Solaris system, connected in the same network. This copy should be done as a batch job without asking for password to be entered every time. How to make this possible ??? At present I am using cygwin in my laptop... (4 Replies)
Discussion started by: ks_reddy
4 Replies

7. Shell Programming and Scripting

Help needed to transfer list of files to FTP server, to different folders

Hello Unix Gurus, Help required from you. My requirement is something like this I want to create a concurrenct program in Oracle Applications using shell script to transfer files from Apps Server to destination FTP server. I have created custom program, where I will extract all the... (4 Replies)
Discussion started by: amazon
4 Replies

8. Shell Programming and Scripting

Shell script to transfer the files from source to target server.

I need to write a shell script to transfer the files every hour from source - target server. The cron job should be running every hour and shouldn't copy already copied files to the remote server ? I was able to write intial script but not able to get the logic for (in the next run it should... (12 Replies)
Discussion started by: radhirk
12 Replies

9. Linux

transfer files from the server 1 to server 2

I want to transfer files from the server 1 to server 2, but only information available FTP my server 2 How? Is there a script help me in the transfer of files through FTP :( (2 Replies)
Discussion started by: bomozah
2 Replies

10. UNIX for Dummies Questions & Answers

Transfer files from Unix server to Windows using FTP

Dear Friend, I don't know much about unix.I am an VB6.0 Programmer.I need to move an text files as aaa.txt from unix server to windows "D: " driver using the FTP protocol.Is it possible to do this with help of unix shell script.If possible please give some sample codes. Please answer as early... (1 Reply)
Discussion started by: gjsaravanan
1 Replies
Login or Register to Ask a Question