Tagged Questions

0
votes
1answer
16 views

Deploy to remote server using scp in NANT script

I am trying to copy a file to a remote server using scp task in Nant.Contrib . I have used the following code to do that: <target name= "QADeploy"description="gthtyb" > <loadtasks …
0
votes
1answer
21 views

scp with short password

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 is it any option to use scp with short length passwords
0
votes
2answers
43 views

Ruby Sinatra - Add custom routes for files in Public folders.

Hi, 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. The code base is essentially same for everyone. …
0
votes
1answer
67 views

Periodically backup files to another server via scp

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 …
0
votes
1answer
21 views

Scp locate’s output by Xargs

I want to make a list of files of locate's output. I want scp to take the list. I am not sure about the syntax. My attempt with pseudo-code locate labra | xargs scp {} masi@11.11.11:~/Desktop/ …
0
votes
3answers
69 views

How do I ensure that a username/password combination is not read from memory

How do I ensure that a username/password combination is not read from memory while my application is in use. My program is a GUI wrapper for some CYGWIN tools, including SSH and SCP. I need to ensure …
0
votes
2answers
106 views

cURL php extension for windows with SCP and SFTP support

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 …
1
vote
0answers
121 views

How to copy /etc/hosts to all my machines? [closed]

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) I have written this script to copy …
1
vote
2answers
64 views

Moving a git repo to another server

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 …
0
votes
0answers
61 views

SCP from one external server to another [closed]

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) I am trying: scp -r -P xxxx …
0
votes
3answers
139 views

Using Ruby and SCP/SSH, how to determine if a file exists before uploading a copy

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?
0
votes
0answers
51 views

How using ssh/scp between non-public machines [closed]

I am often in the following situation: 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 …
1
vote
8answers
287 views

How to respond to password prompt when using SCP in a shell script?

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. I would like to scp the …
0
votes
1answer
72 views

netbeans - scp after build

Hi I'd like to copy a file to a remote server with scp after building, using Netbeans. What I do now manually is: Clean and Build Main Project scp dist/project.jar login@dest/...../...... Is …
1
vote
3answers
583 views

Automate scp file transfer using a shell script

Hello, 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 …

1 2 3 4 next
15 30 50 per page