SCP from one server to another without password prompt - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T04:49:30Zhttp://stackoverflow.com/feeds/question/593650http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/593650/scp-from-one-server-to-another-without-password-prompt1SCP from one server to another without password promptN2EE2009-02-27T05:55:43Z2009-03-17T20:42:29Z
<p>What is the best way of doing SCP from one box to the other without prompting for password?</p>
<p>There are two servers</p>
<p><strong>Server A</strong></p>
<p>10.152.2.10</p>
<p>/home/oracle/export/files.txt</p>
<p><strong>Server B</strong></p>
<p>10.152.2.11</p>
<p>/home/oracle/import/</p>
<p>If I want to transfer the files using scp from Server A to server B without being prompted to enter a password</p>
<p>[running this from Server A, /home/oracle/export/]</p>
<p><em>scp files.txt oracle@10.152.2.11:/home/oracle/import</em></p>
<p>This would prompt me for a password upon entering the command.</p>
<p>I understand that a keygen is required to be generated and copied to Server A</p>
<p>Thus[At Server A]:
ssh-keygen -t rsa</p>
<p>This gives me two files stored in /home/oracle/.ssh:</p>
<p>id_rsa<br />
id_rsa.pub</p>
<ol>
<li>Am I supposed to copy the two files (id_rsa,id_rsa.pub) over into Server B /home/oracle/.ssh ?</li>
</ol>
<p>While doing some google search on this, some articles mentioned about appending/concatenating this to authorized_keys.</p>
<ol>
<li>Am I supposed to create this file on my own?</li>
</ol>
<p>I seem to be confused on what is the right way to do this.</p>
<p>Btw, the two servers are running Suse Linux Enterprise Edition 9...</p>
<p>Please advice.</p>
http://stackoverflow.com/questions/593650/scp-from-one-server-to-another-without-password-prompt/593677#5936776Answer by mipadi for SCP from one server to another without password promptmipadi2009-02-27T06:08:46Z2009-02-27T06:08:46Z<ol>
<li>No, you keep <code>id_rsa</code> to yourself; however, <code>id_rsa.pub</code>, which is your public key, may be copied to servers to which you wish to have access. Concatenate them onto the end of <code>~/.ssh/authorized_keys</code>.</li>
<li>Yes, you may create <code>~/.ssh/authorized_keys</code> if it is not already created; otherwise, just append to the end of the file, using <code>cat id_rsa.pub >>~/.ssh/authorized_keys</code>.</li>
</ol>
http://stackoverflow.com/questions/593650/scp-from-one-server-to-another-without-password-prompt/655945#6559451Answer by dr-jan for SCP from one server to another without password promptdr-jan2009-03-17T20:42:29Z2009-03-17T20:42:29Z<p>You should also check the permissions on the various files and directories:</p>
<pre><code>authorized_keys needs perms of 600 (chmod 600 authorized_keys)
the .ssh directory should be 700
your home directory should be at most 744
</code></pre>
<p>Your home directory must not be writable by anyone other than you.</p>