Secure Copy or SCP is a means of securely transferring computer files between a local and a remote host or between two remote hosts.

learn more… | top users | synonyms

0
votes
0answers
17 views

using expect to automatically put pubkey on server

I'm attempting to use expect as part of a client setup utility (for a unison cron job) which will automatically put their machine's pubkey on our server so that unison can continue to work over ssh ...
0
votes
0answers
9 views

Secure File Transfers Technology Comparison [closed]

I'm looking into the capabilities, limitations and theoretical performance differences between SFTP, FTPS and SCP technologies. Does anyone know of a good source which may have a lot of the ...
0
votes
3answers
28 views

How do I use scp to copy a file from the server to the client side ?

How do I transfer files from a computer I am accessing remotely back to the computer I'm currently at? Can anyone help me? Here's the syntax I know so far, scp (filename) (I don't know what to put ...
2
votes
8answers
73 views

file copy from one to 100 servers

I want to transfer a 100 GB file that resides on a single server to 100 other servers in the network over 1 Gbps line. What is the best way to do it ? My solution is copy the file to k number of ...
0
votes
1answer
47 views

Best way to determine if an SCP transfer fails

At the end of a script if successful it creates a file (files) and stores it into a destination directory; I'm then retrieving the file (files) via scp from a server back to my workstation. The user ...
0
votes
0answers
16 views

Ant - Check SCP Remote File Exists

I have a remote location which an Ant SCP task copies files to. I would also like a separate target in my build that checks if a file exists in this remote location. However I cannot see a way to ...
1
vote
1answer
20 views

Default sort order for (P)SCP

Is there a default sort for the order in which PSCP downloads files from a remote server and if so, what is it? I can't get an accurate read on how far along my download is, so I'd like to compare the ...
0
votes
0answers
8 views

trace all the file transfered into my ubuntu server

I just started a task and I'm trying to get a list of the all file transfer that is happening on my server, from outside the server, mean user sending file through ftp or scp just, This task is just ...
0
votes
2answers
28 views

Unix Shell file transfer

I just started using Unix and I need to copy of few files from my class folder to my MAC. Files are lab1.txt and lab1script, unix host is myname@stdlinux.myschool and directory is ...
0
votes
0answers
24 views

how to stream file with SSH/FTP and Python?

i need help to stream a file with python( with paramiko ) on external server. Example( get file, no streaming ): import x stream = x.Streaming() stram.file( '/external/server/log.log' ) line in ...
0
votes
1answer
24 views

scp folder structure and only files with a specific extension

I have a huge folder structure with deep subfolders, and inside these folders there is files with different extensions (.txt, .pdf, ...). what i want to do is to copy the whole folder structure along ...
0
votes
0answers
15 views

Create a droplet to SCP the contents of a folder to a remote directory

We have a client who now demands that tens of GB of video files per day be SCP'd to their server from our office. It started as just one file here and there and it was no problem, but now It's ...
0
votes
1answer
23 views

How can I rsync/scp files/folders among EC2 servers?

I tried to execute scp/rsync command between two of my EC2 servers but I got the error as be low snapshot. Normally when I ssh connect to my servers via PuTTY, I need to attach a private key. So what ...
-2
votes
0answers
17 views

Having trouble putting Jsch SCP methods in a loop [closed]

The ultimate goal of the program is to read a CSV file and download the files from the second column and give them names from the first column. I have had no problem with the CSV portion of it and no ...
3
votes
0answers
123 views

How to move directorys into different machines?

I have a directory called Dirs which contains 30 directorys and I want to distribute the 30 directory into different computers ( 10 computers )( I want to move the directory to /disk for each computer ...
0
votes
1answer
29 views

scp2 from Linux to Windows via batch script, *.* file mask issues

I'm running a batch file that uses a .ini file to populate the scp2 command (F-Secure's scp2). The batch file when triggered will complete a scp2 of data files from a remote Linux server to the local ...
0
votes
0answers
17 views

transfer hundreds of files specified on a list between two servers [migrated]

I need to download 800 files from a server to my server. These files have different names and they're in different subdirectories in the remote server, but I have their names on a list. How can I do ...
2
votes
1answer
76 views

SCP via SSH internals

So I was playing around with SCP and had a few questions. First, for reference, here's a log file of my SCP session: -> NET_SSH2_MSG_CHANNEL_REQUEST (since last: 0.0021, network: 0.0001s) 00000000 ...
0
votes
2answers
58 views

Is there a better way to check file size using SCP before downloading?

I have this code to download a file from a remote machine, but I want to limit it to files that are less than 5MB. So far the code works. but is there a better way to check the filesize before ...
0
votes
0answers
12 views

PSCP Usage: Copying folder to remote machine

I need to copy a folder from C:\TEST from my machine to another machine testmachine.domain.net to the C: drive. How do I do this using pscp? The second machine's credentials are username: admin ...
1
vote
2answers
64 views

PHP sftp + fopen compared to ssh2_scp_send

I wanted to if there is any real difference using PHP sftp for file open like shown here and with ssh2_scp_send I am planning on uploading multiple files per php session and want to not spend to much ...
0
votes
0answers
76 views

SCP error: Bad configuration option: PermitLocalCommand

When I execute this command below: scp -P 36000 hdfs@192.168.0.114:~/tmp.txt SOQ_log.txt I get an error: command-line: line 0: Bad configuration option: PermitLocalCommand Does anyone know why? ...
0
votes
1answer
70 views

scp documents from server from inside Bash script [duplicate]

I normally use scp like so: myUser@myMachine:~/myapp$ scp devops@myserver.org:/path/to/bin/*.derp . devops@myserver.org's password: ******** herp1.derp 100% 732 ...
0
votes
1answer
37 views

How to verify if SCP was successful?

I'm using http://phpseclib.sourceforge.net/ to make an SSH connection to my server, then execute an SCP command to transfers to a remote server. The library's exec() method returns a string (looks ...
0
votes
0answers
24 views

SCP Connection through proxy ip

I am Using SCP (Secure Copy Protocol) to connect client through server to transfer file.Currently When the client is using Public IP it is working well with the SCP. Is it possible to upload a file ...
0
votes
1answer
93 views

SCP command line and PHP exec() not doing the same thing

When I run this on the command line: scp -i private.ppk -P 22 foo.txt someuser@domain.com:/home/someuser/foo.txt Everything works fine. foo.txt gets transferred to the remote server without any ...
0
votes
0answers
36 views

Using proc_open in SSH

I have the following snippet: $host = 'foobar.com'; $username = 'foo'; $password = 'bar'; $remote_file = 'remote.txt'; $local_file = 'local.txt'; $port = 22; $command = "scp ...
0
votes
0answers
33 views

How to escape special characters in scp

I want to be able to escape any worst case scenario file path in scp. I can't find a way to escape a file with an exclamation point and a " character at the same time. Back story: I have a webpage ...
0
votes
1answer
51 views

Warning during SCP transfer in PHP

I transfer files to a remote server using scp as follows: $connection = ssh2_connect('shell.example.com', 22); ssh2_auth_password($connection, 'username', 'password'); ssh2_scp_send($connection, ...
0
votes
0answers
19 views

Proc SCP in rails directly to client

I am trying to download a file directly from a server and serve it to a client directly. These files can be very large though so I don't want to buffer them all into memory. Currently I am downloading ...
0
votes
0answers
41 views

scp fails with “FIPS_mode_set:fingerprint does not match” error

I have the following machine: Linux ssim-21416 2.6.18-348.3.1.el5 #1 SMP Mon Mar 11 19:39:25 EDT 2013 x86_64 x86_64 x86_64 GNU/Linux and CentOS release 5.9 (Final) now when i try to do scp or ...
1
vote
2answers
91 views

Uploading files using SCP using phpseclib

I need to create 2 functions: one to upload files using SFTP and another using SCP. I'm using phpseclib and the put method; I believe I have the SFTP function done. Now, I'm trying to do the SCP ...
0
votes
0answers
52 views

On OSX 10.8.3, scp command only show 'Last Login' info and doesn't do anything

I'm using OSX 10.8.3. The scp command seems broken. Restart can fix it for a while, but it will run into the broken status a few minutes after that. The symptom is, for example, In terminal, type ...
2
votes
0answers
74 views

Cannot overwrite file with JSCH SCP

First, sorry for my poor english ... I'm using JSCH to upload files via SCP and it works well. My only problem is that when the destination file already exists and belongs to another user, I can't ...
0
votes
3answers
827 views

Fully working SSH command line client for Windows? [closed]

Is there an SSH (and SCP) command line client for Windows that works and supports public/private keys? "And supports public/private keys" excludes OpenSSH for Windows (try it, good luck - in the 9 ...
1
vote
1answer
71 views

Can I use an existing SSH connection and execute SCP over that tunnel without re-authenticating?

I'm wondering if I already have an established SSH tunnel and I want to minimize re-authenticating with an ssh server for each task, is there a way to use an existing tunnel to pull a file from the ...
0
votes
1answer
59 views

Ruby net/scp, upload file from variable

It seems like net/scp in Ruby (I'm using 1.8.7) only accepts a path and not binary data as "local_file" parameter. In my case, I have the local file stored in a variable. Am I required to ...
0
votes
1answer
20 views

wp7 - stream creating issue

I am trying to make my app save pictures from remote host via SSH and SCP and I need to create an empty Stream variable to full it with ScpClient.Download(string filename, Stream destination) method ...
1
vote
0answers
26 views

SCTP does not work in PHP File but in Console

I want to copy a file from one server to another. I do it with a an rsa authentification file. My code is: excec("scp -C -o StrictHostKeyChecking=no -P 22 -i /data/www/htdocs/project/tmp/keydata -r ...
4
votes
1answer
166 views

Whats faster? Copy via nfs-mount or via scp?

we have a network of several machines and we want to distribute a big directory (ca. 10 GB) to every box. It is located on an nfs-server and is mounted on all machines, so first approach is to just ...
0
votes
1answer
31 views

Juniper Netscreen Log Files

I am trying to find a way to copy the log files from a Juniper SSG5 so that I can programmatically analyse them. I know that it is possible to scp files from the Juniper but I have been unable to ...
0
votes
1answer
31 views

SCP to instance store of aws instance

I have an instance of ec2 which has a root device and a instance store attached to it. When I scp to the root device then there is no problem, but when I scp to the instance store then it gives me ...
2
votes
1answer
75 views

FIPS compliant SSH library for Java

I want to implement SCP (Secure Copy) functionality in my Java application to copy a file from the SSH server to another machine. My java application must be FIPS compliant and hence it uses SunPKCS11 ...
1
vote
1answer
115 views

NodeJS: Events on child processes

var spawn = require("child_process").spawn; var child = spawn("scp" , ["-P9022", path_to_file, scp_remote_path]) child.stdout.on("data", function(){ //Automatically type in password }) I'm ...
0
votes
0answers
92 views

protocol error: unexpected <newline> when doing a commad line scp

When doing an scp command to get a file from another server: scp kennyr@[server]:[path]/[file] . I receive this message: protocol error: unexpected I have done some research and the ...
0
votes
0answers
31 views

Best technology to use when polling external website and downloading content

I need to poll an external web site (cloud server outside the firewall) and potentially download large chunks of content. A web service is fine for the polling step , it allows me check periodically ...
0
votes
1answer
55 views

Scheduling task in Windows involving SCP, SSH

I am running the following script in Windows 8 using Git Bash; works fine when run manually--scp, ssh, etc. all work fine. But it does not work when put into Task Scheduler. The Task Scheduler ...
0
votes
1answer
39 views

check the particular username already present in SCP

i want to check if user name is already present in the particular host or not using SCP. how can i do that?
0
votes
0answers
79 views

scp command fails between servers on same network [closed]

I have two linux(redhat 5.6, 64 bit) servers(hp proliant 380p g8), server1's eth0,eth2 bonded to bond0.Similarly server 2's eth0,eth2 bonded to bond0. server1's eth0 connects to cisco(3560 catalyst) ...
2
votes
1answer
152 views

[solved]Jenkins and SCP

I have set up a jenkins build and everything is working fine except the very last step. The whole build creates a directory called: build This directory contains a web-inf and all the files in it I ...

1 2 3 4 5 9