active questions tagged scp - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T23:40:24Zhttp://stackoverflow.com/feeds/tag/scphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1879974/deploy-to-remote-server-using-scp-in-nant-script0Deploy to remote server using scp in NANT scriptMini2009-12-10T10:01:43Z2009-12-10T11:16:17Z
<p>I am trying to copy a file to a remote server using scp task in Nant.Contrib .</p>
<p>I have used the following code to do that:</p>
<pre><code><target name= "QADeploy"description="gthtyb" >
<loadtasks assembly="C:\nantcontrib-0.85\bin\NAnt.Contrib.Tasks.dll" />
<echo message="htyh"/>
<scp file="D:\SourceTest\redist.txt" server="\\10.4.30.19" user="xxx:uuuu">
</scp>
</target>
</code></pre>
<p>But I am getting an error: scp failed to start. The system cannot find the file specified.
The code is as follows:
Then I have downloaded pscp.exe and modified the code as below:</p>
<pre><code><target name= "QADeploy"
description="gthtyb" >
<loadtasks assembly="C:\nantcontrib-0.85\bin\NAnt.Contrib.Tasks.dll" />
<echo message="htyh"/>
<scp file="D:\SourceTest\redist.txt" server="\\10.4.30.19" user="xxx:uuuu" program="C:\pscp\pscp.exe">
</scp>
</code></pre>
<p>Now I am getting the following error:</p>
<p>[scp] ssh_init:host does not exist</p>
<p>External Program Failed:C:\pscp\pscp.exe </p>
<p>can u please help whats the best way to copy a file to a remote server using Nant. I am using this code to deploy files to a remote server.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1876721/scp-with-short-password0scp with short passwordsoField2009-12-09T20:38:22Z2009-12-09T20:49:04Z
<p>when i tried to create public private key pair for password which length is less then 4 it does accept my password because of length </p>
<p>is it any option to use scp with short length passwords</p>
http://stackoverflow.com/questions/1593066/curl-php-extension-for-windows-with-scp-and-sftp-support0cURL php extension for windows with SCP and SFTP support Chrisdfer2009-10-20T07:57:16Z2009-11-27T18:34:32Z
<p>I switched over to zendserver(VS8 php(5.3) binaries), and now curl(7.19.4) seems to be lacking SCP and SFTP protocol support(verified by errors and phpinfo). Curl itself is installed correctly, it's just lacking the protocol support mentioned. </p>
<p>This worked out of the box on the VC9(thread safe) binaries I downloaded off php.net(this installation is using apache binaries compiled with with VS9, hence why I was using php binaries compiled with VS9)</p>
<p>I'm assuming it has something to do with the curl extensions not built with VS9, because I also tried out the VS6 php binaries and that too was lacking SCP and SFTP support...</p>
<p>Looking at the curl section on phpinfo, I notice that the php installs without SCP/SFTP support do not have a libSSH Version listed, whereas the one with the support says: libSSH Version->libssh2/1.1</p>
<p>Any idea on why those curl extensions seem to not have been compiled with libssh2/1.1(???guessing that might be the case???) Or is it something else? </p>
http://stackoverflow.com/questions/1787877/ruby-sinatra-add-custom-routes-for-files-in-public-folders0Ruby Sinatra - Add custom routes for files in Public folders.Jasim2009-11-24T04:54:26Z2009-11-26T10:32:22Z
<p>Hi,</p>
<p>I've a Sinatra app which would be used by different clients. I wish to show the client's Company Logo and a custom layout.erb for each client. </p>
<p>The code base is essentially same for everyone. All I need is a way to easily maintain a different set of files in the 'Public' directory and 'layout.erb', and when deploying to the remote server, automatically copy only the particular client's files.</p>
<p>Any pointers?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1760831/periodically-backup-files-to-another-server-via-scp0Periodically backup files to another server via scpunknown (yahoo)2009-11-19T04:13:16Z2009-11-19T20:41:52Z
<p>There are set of log files that have a pattern xxxxxYYY where xxxx -> some text and YYY is a sequence number increasing sequentially by one and wrapping around. Only the last n number of files are available at a given time.</p>
<p>I would like to write a foolproof script that would make sure that all the log files are backed up in another server (via ssh/scp).</p>
<p>Can somebody please suggest a logic/code snippet(perl or shell) for it?</p>
<p>=> The script can run every few minutes to ensure bursts of traffic do not cause log files to miss getting backed up.</p>
<p>=> The roll over needs to be detected so that files are not overwritten in the destination server/directory.</p>
<p>-> I do not have super user either in source or destination boxes. The destiantion box does not have rsync installed and would take too long to get it installed.
-> Only one log file gets updated at a time. </p>
http://stackoverflow.com/questions/1393066/netbeans-scp-after-build0netbeans - scp after buildNicola Montecchio2009-09-08T09:55:37Z2009-11-18T22:23:05Z
<p>Hi</p>
<p>I'd like to copy a file to a remote server with scp after building, using Netbeans.</p>
<p>What I do now manually is:</p>
<ol>
<li>Clean and Build Main Project</li>
<li>scp dist/project.jar login@dest/...../......</li>
</ol>
<p>Is there some way to automate this task? I tried looking at the build.xml file, but it really looks like something I don't want to mess with.</p>
<p>Thanks</p>
<p>Nicola</p>
http://stackoverflow.com/questions/1725286/scp-locates-output-by-xargs0Scp locate's output by XargsMasi2009-11-12T20:50:08Z2009-11-12T21:22:51Z
<p>I want to make a list of files of locate's output.
I want <code>scp</code> to take the list. </p>
<p>I am not sure about the syntax.
My attempt with pseudo-code</p>
<pre><code>locate labra | xargs scp {} masi@11.11.11:~/Desktop/
</code></pre>
<p>How can you move the files to the destination?</p>
http://stackoverflow.com/questions/1679534/scp-from-one-external-server-to-another0SCP from one external server to another [closed]Lizard2009-11-05T10:02:47Z2009-11-05T10:21:29Z
<p>I am trying to a SCP on my local server that copies a file from one remote server to another remote server (Both remote servers use a custom port (xxxx)</p>
<p>I am trying:</p>
<pre><code>scp -r -P xxxx root@xxx.xxx.xxx.111:/home/myimages/images.tar.gz root@xxx.xxx.xxx.222:/home/myimages/images.tar.gz
</code></pre>
<p>But i get the following error:</p>
<pre><code>ssh: connect to host xxx.xxx.xxx.222 port 22: Connection timed out
</code></pre>
<p>Any suggestions?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1665963/how-do-i-ensure-that-a-username-password-combination-is-not-read-from-memory0How do I ensure that a username/password combination is not read from memoryAnkur2009-11-03T08:30:58Z2009-11-04T07:34:43Z
<p>How do I ensure that a username/password combination is not read from memory while my application is in use.</p>
<p>My program is a GUI wrapper for some CYGWIN tools, including SSH and SCP. I need to ensure single sign-on capabilities to a variety of hosts.</p>
http://stackoverflow.com/questions/1593078/how-using-ssh-scp-between-non-public-machines0How using ssh/scp between non-public machines [closed]mo-seph2009-10-20T08:00:10Z2009-11-03T15:30:08Z
<p>I am often in the following situation:</p>
<p>I have two machines, A and B, which are on LANs, and have non-public IP addresses. Machine C is on the same LAN as B, but publicly visible. I would like to copy a file from B to A, so I have to:
* ssh to C
* ssh from C to B
* scp file from B to C
* scp file from C to A</p>
<p>Given that ssl can do wonderful things with tunnelling displays all the way back from B to A via C transparently, it seems like it should be possible to do the same with files.</p>
<p>Is there a way to use standard ssh/scp to copy from B to A, without having to make a temporary copy on C?</p>
http://stackoverflow.com/questions/658166/scp-file-not-setting-correct-owner0scp file not setting correct ownerTom2009-03-18T12:58:51Z2009-11-02T12:41:24Z
<p>Does SCP have a problem setting file permissions or have I misconfiguration my server?</p>
<p><strong><em>Updated (19/Mar/09)</strong>: Actually: There is no problem - I have just misunderstood the way permissions work - they don't change when the file contents are changed</em></p>
<h2>Use case:</h2>
<p>There is a file on a server that I want to edit called "importantFile.txt". The file has owner and group of "master":</p>
<pre><code>ls -l importantFile.txt:
-rw-rw-r-- 1 master master 7 Mar 18 08:11 importantFile.txt
</code></pre>
<p>I am called "slave" but luckily, I am in group "master" so I can edit the file as I see fit. However, I'm a lazy slave and can't be bothered to edit the file on the server, I'd prefer to edit the file on my local machine and SCP it to the server:</p>
<pre><code>echo "bored slave info" > importantFile.txt
scp importantFile.txt slave@theServerAddress:/pathToFile/importantFile.txt
</code></pre>
<p>If I do this, the contents of the file on the server are uploaded fine and the timestamp of the file is updated but the permissions of the file don't change, the file is still owned by "master". This is a problem because if "slave" uploaded bad content, no one would know it was "slave" who caused the problem, "master" would look guilty.</p>
<p>Perhaps I have to set a umask? if so where? I tried .bash_profile without success and haven't found anything on Google about umask in <code>/etc/ssh/sshd_config</code>.</p>
http://stackoverflow.com/questions/1656378/how-to-copy-etc-hosts-to-all-my-machines1How to copy /etc/hosts to all my machines? [closed]alex2009-11-01T04:22:11Z2009-11-01T10:38:02Z
<pre><code>import os, sys, time
servers = ['dev','admin','db1']
for s in servers:
cmd = 'scp /etc/hosts regular_user@%s:/etc/hosts' % s
print cmd
os.system(cmd)
</code></pre>
<p>I have written this script to copy my current HOSTS file to all my other servers.
However, I would like to do this from a regular user, not ROOT.</p>
<p>Since over-writing /etc/hosts takes root privelages, I would like to do <strong>SUDO</strong>. How can I put sudo inside that script? </p>
<p>This won't work, because it is permission denied to change /etc/hosts file.</p>
<pre><code>cmd = 'sudo scp /etc/hosts regular_user@%s:/etc/hosts' % s
</code></pre>
http://stackoverflow.com/questions/1631346/moving-a-git-repo-to-another-server1Moving a git repo to another serverJacob R2009-10-27T14:50:05Z2009-10-27T19:42:36Z
<p>I have a git clone/repo on a development server, but I am now moving to another one. I don't want to commit all my local branches and changes to the main repository, so how can I make an exact copy of everything on oldserver to newserver?</p>
<p>I tried <code>oldserver:~$ scp -rp project newserver:~/project</code></p>
<p>but then I just get loads and loads of "typechange" errors when trying to do anything on newserver.</p>
<p>Someone said something about x-modes, but how can I preserve that when moving files between servers?</p>
http://stackoverflow.com/questions/1625693/using-ruby-and-scp-ssh-how-to-determine-if-a-file-exists-before-uploading-a-copy0Using Ruby and SCP/SSH, how to determine if a file exists before uploading a copyZando2009-10-26T16:14:18Z2009-10-26T22:19:47Z
<p>I'm uploading a file to a remote server using SCP, but what's the proper way of seeing if that file exists before doing so?</p>
http://stackoverflow.com/questions/992374/object-oriented-c-library-for-ssh-and-scp3Object Oriented C++ library for ssh and scpDahiya2009-06-14T07:38:15Z2009-10-19T11:10:58Z
<p>Is there any Object Oriented C++ library for ssh and scp. BSD license would be preferred.</p>
<p>I could find libssh and libssh2. But these are all procedural.</p>
http://stackoverflow.com/questions/1452401/scp-ing-without-replacing-folder0scp-ing without replacing folderbiznez2009-09-21T00:13:38Z2009-10-12T11:49:44Z
<p>How do I scp an entire folder into a folder of the same name without replacing the content in the destination folder? (instead, I would like to add to the contents of the destination folder)</p>
http://stackoverflow.com/questions/1541265/scp-on-webclient-class-in-net2scp on WebClient class in .NetUser12009-10-09T00:27:02Z2009-10-09T00:32:21Z
<p>I have a project already written using .Net's WebClient class. It works great for FTP and WebDAV resources, but how can I get it to work with SCP or SFTP?</p>
http://stackoverflow.com/questions/1462284/how-to-respond-to-password-prompt-when-using-scp-in-a-shell-script1How to respond to password prompt when using SCP in a shell script?derrdji2009-09-22T20:05:10Z2009-09-23T02:44:29Z
<p>First of all, I am well aware of that there are many of questions regarding this topic. I have read them, but still could figure out an appropriate answer for my situation.</p>
<p>I would like to <code>scp</code> the entire <code>~/cs###/assign1</code> dir from local to school home dir with a shell script. My question is, is there a way in my script to wait for the password prompt, and then simulate key board event to 'type' in my password?</p>
<p><hr /></p>
<p><a href="http://sial.org/howto/openssh/publickey-auth/" rel="nofollow">here</a> is a really detailed guide of how to set up the key</p>
http://stackoverflow.com/questions/1044986/using-expect-to-automatically-send-in-password0Using 'expect' to automatically send in passwordSaobi2009-06-25T16:47:31Z2009-09-21T12:37:50Z
<p>I am trying to copy a file from my remote server to my local. Here's my script to run it, by using 'expect' to automaticlally send in password</p>
<pre><code>scp user@host:/folder/myFile ./
expect "Password: "
send "myPassword"
</code></pre>
<p>When I run this, it still prompts for "Password", what is wrong?</p>
http://stackoverflow.com/questions/1346509/automate-scp-file-transfer-using-a-shell-script1Automate scp file transfer using a shell scriptjimko2009-08-28T11:46:45Z2009-09-15T21:13:15Z
<p>Hello,</p>
<p>I have some n number of files in a directory on my unix system . Is there a way to write a shellscript that will transfer all those files via scp to a remote system, i specify . Ill specify the password within the script, so that i dont have to enter it for each file.
Is there a way to do this ?</p>
<p>Thank You</p>
http://stackoverflow.com/questions/865194/transferring-files-from-aix-batch-to-windows-batch0Transferring files from AIX batch to Windows batchjmgant2009-05-14T19:24:10Z2009-09-09T19:00:02Z
<p>The responses to <a href="http://stackoverflow.com/questions/864561/most-efficient-and-reliable-way-to-get-unix-files-into-sql-server">my previous question</a> suggested SSIS as the most efficient and reliable way to get files from AIX into SQL Server. I agree that it's probably a good idea. But for the sake of understanding the other options better, I'd like to narrow the scope a little bit.</p>
<p>Irrespective of what I plan to do with the files, how can I determine the most efficient and reliable method of retrieving from a Windows batch job files that are created by an AIX batch job, assuming I'm in control of both ends. The basic options I know of are sftp, scp and samba. I'm open to other options.</p>
<p>My criteria are as follows.</p>
<ul>
<li>Reliability. From my experience (maybe just a problem in our systems) ftp jobs in batch are among the most frequent to fail. </li>
<li>Security. Both servers are on the internal network, but the transfer still needs to be secure.</li>
<li>Maintainability. We have a fairly strict password expiration policy. So I'd like to minimize the number of different accounts and passwords.</li>
<li>Efficiency. The amount of data to be transferred in this specific case is small but not trivial. I'd be interested to know whether any of these approaches performs and scales better than the others.</li>
</ul>
<p>Any suggestions or input will be appreciated.</p>
http://stackoverflow.com/questions/850749/check-whether-a-path-exists-on-a-remote-host-using-paramiko1Check whether a path exists on a remote host using paramikoSridhar Ratnakumar2009-05-12T01:24:59Z2009-09-08T00:29:06Z
<p>Paramiko's <a href="http://www.metasnark.com/paramiko/docs/paramiko.SFTP-class.html" rel="nofollow">SFTPClient</a> apparently does not have an <code>exists</code> method. This is my current implementation:</p>
<pre><code>def rexists(sftp, path):
"""os.path.exists for paramiko's SCP object
"""
try:
sftp.stat(path)
except IOError, e:
if 'No such file' in str(e):
return False
raise
else:
return True
</code></pre>
<p>Is there a better way to do this? Checking for substring in Exception messages is pretty ugly and can be unreliable.</p>
http://stackoverflow.com/questions/1389753/non-interactive-scp0Non-interactive scpRichard Dorman2009-09-07T14:52:33Z2009-09-07T15:11:31Z
<p>I'm creating a bash script to create new EC2 instances and then upload a file once the instance is created. I'm using scp to upload the file, however, since this is the first time I'm connecting to the instance the script is prompted with "Are you sure you want to continue connecting (yes/no)?" since the authenticity of the host is not known. The script needs to run non-interactively.</p>
<p>Is it possible to avoid the prompt (there doesn't seem to be an obvious command line option). If not is there an alternative method or command I can use to upload the file?</p>
http://stackoverflow.com/questions/1376739/how-do-i-copy-files-from-a-remote-host-to-my-computer0how do I copy files from a remote host to my computer? [closed]Derrick2009-09-04T00:58:09Z2009-09-04T01:03:40Z
<p>I am trying to use the following command:</p>
<pre><code>$ scp remoteusername@host:$HOME/fileiwanttocopy /my/local/comp
</code></pre>
<p>I woould like for home to be evaluated on the remote host instead of my computer (which it is doing now) i've tried it with and without quotes.</p>
http://stackoverflow.com/questions/1364729/scp-hang-at-100-before-finishing0scp „hang“ at 100%, before finishing [closed]Florian Apolloner2009-09-01T21:25:18Z2009-09-01T21:25:18Z
<p>Hi, my scp commands do hang at 100% before the finish (some seconds), The output I get using -vvv is this:
<a href="http://paste.pocoo.org/show/137504/" rel="nofollow">http://paste.pocoo.org/show/137504/</a></p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1340048/how-do-i-create-a-directory-on-remote-host-if-it-doesnt-exist-without-ssh-ing-in1How do I create a directory on remote host if it doesn't exist without ssh-ing in?larjudge2009-08-27T09:58:34Z2009-08-30T18:12:12Z
<p>I'm not sure if this is possible or not,</p>
<p>Basically, I'm writing a script that allows me to scp a file to my hosting. This is it so far. Arg 1 is the file and arg 2 is the folder i want it to be placed in on the remote server</p>
<pre><code>function upload {
scp $1 myusername@ssh.myhost.net:$2
}
</code></pre>
<p>As you may/may not know, if the directory I specify when I call the function doesn't exist, then the transfer fails. Is there a way to check if the directory exists in the function and if it doesn't, create it.</p>
<p>I would prefer not having to ssh in every time and create the directory, but if I gots no choice, then I gots no choice.</p>
<p>Cheers,
Lar</p>
http://stackoverflow.com/questions/202432/how-to-best-capture-and-log-scp-output3How to best capture and log scp output?caseyboardman2008-10-14T19:08:52Z2009-08-12T03:06:36Z
<p>I am trying to capture output from an install script (that uses scp) and log it. However, I am not getting everything that scp is printing out, namely, the progress bar. </p>
<p>screen output:</p>
<blockquote>
<p>Copying
/user2/cdb/builds/tmp/uat/myfiles/* to
server /users/myfiles as cdb</p>
<p>cdb@server's password:
myfile 100% |<strong>*************************</strong>| 2503 00:00</p>
</blockquote>
<p>log output:</p>
<blockquote>
<p>Copying
/user2/cdb/builds/tmp/uat/myfiles/* to
server /users/myfiles as cdb</p>
</blockquote>
<p>I'd really like to know that my file got there. Here's what I am trying now to no avail:</p>
<blockquote>
<p>myscript.sh 2>&1 | tee mylogfile.log</p>
</blockquote>
<p>Does anyone have a good way to capture scp output and log it? </p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1230342/scp-r-but-leave-out-exclude-a-specified-subdirectory1scp -r ... but leave out (exclude) a specified subdirectoryrussian_spy2009-08-04T23:03:53Z2009-08-04T23:10:28Z
<p>Here's the directory structure:</p>
<pre><code>/a/
/a/b/
/a/c/
</code></pre>
<p>I want to copy everything, EXCEPT for the /a/c/ subdirectory.</p>
<pre><code>scp -rp myserver:/a . # this will copy everything
</code></pre>
<p>Q: How would I specify a directory to leave out in the scp command ?</p>
http://stackoverflow.com/questions/1228466/how-to-filter-files-when-using-scp-to-copy-dir-recursively1How to filter files when using scp to copy dir recursively?derrdji2009-08-04T16:15:38Z2009-08-04T17:14:45Z
<p>I need to copy all the .class files from server to local with all dir reserved. e.g. <code>server:/usr/some/unknown/number/of/sub/folders/me.class</code> will be <code>/usr/project/backup/some/unknown/number/of/sub/folders/me.class</code> the problem is, there are many other useless files such as .svn-base files that i don't want. how can i filter them so I only <code>scp</code> .class files? </p>
http://stackoverflow.com/questions/186968/map-ssh-drive-in-windows10Map SSH drive in WindowsKristian2008-10-09T12:07:39Z2009-07-26T04:18:07Z
<p>Does anyone know of a good (hopefully free) tool that can be used to map a SSH server as a Windows network drive (i.e. SCP)? </p>
<p>EDIT: SFTP not supported</p>
<p>EDIT2: Windows File Sharing/Samba not supported</p>