sftp Questions

2

Solved

I'm using paramiko to connect to an SFTP server on which I have to download and process some files. The server has a timeout set to 5 minutes, but some days it happens that the processing of the f...
Alimentation asked 23/3, 2011 at 9:9

4

I have read article after article and just cannot find "the solution" that works for what I have. I am trying to upload files via SFTP using php scripting. I have connected using CyberDuck success...
Gam asked 31/1, 2015 at 21:21

2

I am using GitBash and I am downloading a file greater than 10GB and it stopped halfway. I don't want to download the whole file again from start. How can I start the download from where it was sto...
Lawana asked 25/3, 2018 at 10:51

6

Solved

I have connected to a server via SFTP using FileZilla and accepted adding the server's SSH key to the key cache in FileZilla. How can I extract this cached key to a keyfile so that may use it thr...
Shanaeshanahan asked 4/9, 2008 at 16:9

6

Solved

I have this problem when I upload a file on the server using the extension liximomo/vscode-sftp for visual studio code. [error] Error: No such file at SFTPStream._transform at SFTPStream.Transfor...
Headband asked 12/5, 2021 at 15:31

3

Solved

I am trying to download files asynchronously from an SFTP-server using SSH.NET. If I do it synchronously, it works fine but when I do it async, I get empty files. This is my code: var port = 22; s...
Sclaff asked 2/12, 2015 at 10:1

11

Solved

Hi I can login to the GCE VM with WinSCP using my own username, cannot login as root...this is by default according to Google, and can be changed. Changed like this: Step 1: Login SSH and Su Root...
Urbanna asked 29/10, 2015 at 8:28

3

Solved

I use SSH.NET in C# 2015. With this method I can upload a file to my SFTP server. public void upload() { const int port = 22; const string host = "*****"; const string username = "*****"; con...
Brittan asked 8/9, 2016 at 18:21

8

Solved

I am currently using Renci SSH.NET to upload files and folders to a Unix Server using SFTP, and creating directories using sftp.CreateDirectory("//server/test/test2"); works perfectly, a...
Graffito asked 12/4, 2016 at 6:15

2

The following code: t = paramiko.Transport((hostname, port)) t.connect(username=username, password=password) sftp = t.open_sftp_client() Raises this exception: Traceback (most recent call la...
Sectorial asked 12/8, 2013 at 9:1

4

Solved

How do I fix this error, no matching host key type found. Their offer: ssh-dss when doing lftp on a vm with Ubuntu 18.04 installed. I've tried adding Host * PubkeyAcceptedKeyTypes=+ssh-dss to my ...
Vibraharp asked 8/1, 2021 at 18:36

5

Solved

I downloaded a new JSch 0.1.53 library and JSch (sftp) download task no longer works. This release fails on session.connect() function throwing an error Session.connect: java.io.IOException: End of...
Pyromancy asked 17/5, 2016 at 15:28

8

Solved

I want to upload a file on a remote server with Python. I'd like to check beforehand if the remote path is really existing, and if it isn't, to create it. In pseudocode: if(remote_path not exist):...
Derrickderriey asked 11/2, 2013 at 19:48

2

Solved

I'm trying to set up an SFTP server with a custom hostname using AWS Transfer. I'm managing the resource using Terraform. I've currently got the resource up and running, and I've used Terraform to ...
Frankforter asked 6/2, 2019 at 23:51

7

Solved

I'm creating a AWS Lambda function when I need to read an info on an API, create a CSV file, and upload them on a SFTP server. I've installed paramiko on my venv, using Ubuntu on Windows, and the ...
Declaratory asked 24/7, 2019 at 18:41

12

Solved

I've run into an issue with updating the header.php file in a WordPress website. Firstly, I tried updating the file manually through C-Panel -> File Manager. The code appears to stay in the file...
Lepidus asked 5/10, 2018 at 18:18

13

Solved

I am trying to connect to remote sftp server over ssh with JSch (0.1.44-1) but during session.connect(); I am getting this exception: com.jcraft.jsch.JSchException: Algorithm negotiation fail at c...
Virtuoso asked 7/6, 2011 at 10:2

3

Solved

I am using JSch to connect to SFTP in a website which is made from GWT. I had read a little example of sftpChannel.get(), sftpChannel.rename(), sftpChannel.rm() But I didn't find a solution that c...
Tojo asked 5/5, 2015 at 10:8

15

Solved

I need to transfer a log file to a remote host using sftp from a Linux host. I have been provided credentials for the same from my operations group. However, since I don't have control over other h...
Tourer asked 22/3, 2011 at 3:40

3

Solved

I have a C# .NET project, where am trying to open an SFTP connection to a server and put a file to the server. I have SFTP hostname, username and key file (.pem file). I do not have a password here...
Maritamaritain asked 17/1, 2020 at 4:52

4

Solved

I'm trying to send a file to some server using SFTP. During this process I'm getting the exception Renci.SshNet.Common.SshException: Invalid private key file. at Renci.SshNet.PrivateKeyFile.Ope...
Inga asked 27/3, 2019 at 13:7

2

Solved

I have the contents of the key pair file for SFTP as a string. I need to use JSch to add the contents, but addIdentity only accepts a file path. Is there anyway I can do this? I see that the KeyP...
Eiland asked 10/11, 2015 at 18:58

10

Solved

I'm getting the standard WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! Someone could be eavesdropping on you right now (man-in-the-middle ...
Democritus asked 27/1, 2014 at 14:47

7

string host = @"ftphost"; string username = "user"; string password = "********"; string localFileName = System.IO.Path.GetFileName(@"localfilename"); string remoteDirectory = "/export/"; using (va...
Johnathan asked 16/5, 2014 at 19:18

3

I've some existing scripts wherein am using ftp + .netrc. I want to switch to sftp now but it seems it doesn't support macros / .netrc. Is there any other alternative? Please help.
Bike asked 1/9, 2009 at 5:28

© 2022 - 2025 — McMap. All rights reserved.