Not able to rename through sftp


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Not able to rename through sftp
# 8  
Old 02-18-2014
telnet is disabled on remote server. Mostly, I feel it is not connectivity issue, it seems like I am missing something on script/command to rename file. While going through man pages of sftp, I got a command "rename file_1 file_2". But I think, it will rename bill.txt to bill.V01.txt first day. Next day when this script will run again and try to rename bill.txt to bill.V01.txt, rename will fail, as there is existing bill.V01.txt from yesterday's rename command.
# 9  
Old 02-18-2014
See there can be various reasons why you are getting connection closed.
Do you get any output for this?
Code:
ssh user@server "date"

--ahamed
# 10  
Old 02-18-2014
ssh doesn't works. But I can connect it sftp and do ls and run sftp commands on remote server
# 11  
Old 02-18-2014
Are you trying to ssh to the same server where you claim the sftp works?

--ahamed
# 12  
Old 02-18-2014
Yes. That is remote server
# 13  
Old 02-18-2014
Sounds like ssh is disabled, and it's running an sftp-only SSH server.

Try the "rename oldname newname" command from within a connected sftp session.
# 14  
Old 02-19-2014
Hi, Solaris_1977
would you mind to try
Code:
ssh -v user@ftp.xxxxxx.com  'mv bill.txt bill.V01.txt'

for more failed details?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Rename (move) multiple files on remote server using sftp

I want to rename (move) multiple files on remote server. I tried the following command to move all TXT files from my_dir directory to /new_dir. But it does not work. Any help? #!/bin/ksh sftp -dev3 << ABC cd my_dir $(for i in TXT; do echo "ls *.$i" ; rename $x /new_dir/$x;... (1 Reply)
Discussion started by: Soham
1 Replies

2. Shell Programming and Scripting

Needed SFTP script from windows to UNIX server and from UNIX to windows server(reverse SFTP)

hi guys, i need a script to sftp the file from windows to unix server ....(before that i have to check whether the file exists in the windows server or not and again i have to reverse sftp the files from unix to windows server..... regards, Vasa Saikumar. (13 Replies)
Discussion started by: hemanthsaikumar
13 Replies

3. UNIX for Dummies Questions & Answers

Using rename

I want to rename files Files show like this 1977SSD_rsdtst.pdf 1976SDP_rstdtsr.pdf 1943FDT_rstdsrt.pdf 1996DFF_stdstrd.pdf I want to introduce _ after the year, and move the characters to the end to get 1977_rsdtst_SSD.pdf 1976_rstdtsr_SDP.pdf 1943_rstdsrt_FDT.pdf... (4 Replies)
Discussion started by: kristinu
4 Replies

4. Shell Programming and Scripting

How to rename bunch of files on sftp?

Hi All, I am trying to move all processed .csv files on sftp to archive dir . I tried to use wildcard *.csv but its not working . Is there any way to do this. I appreciate your help. Regards, raj (1 Reply)
Discussion started by: rajeevm
1 Replies

5. Shell Programming and Scripting

Sftp : not able to print the echo statements after the sftp transfer

I had the below sftp script working perfectly but the problem is I am not able to send the echo statements . #!/bin/sh echo "Starting to sftp..." sftp admin@myip << END_SCRIPT cd /remotepath/ lcd /localpath/ mget myfiles*.csv bye END_SCRIPT echo "Sftp successfully." echo echo... (11 Replies)
Discussion started by: scriptscript
11 Replies

6. Red Hat

Chroot sftp users, remote sftp login shows wrong timestamp on files

Hello, I have a weird issue, I have RHEL 5.7 running with openssh5.2 where sftpgroup OS group is chroot. I see the difference difference in timestamp on files, when I login via ssh and SFTP, I see four hour difference, is something missing in my configuration. #pwd... (8 Replies)
Discussion started by: bobby320
8 Replies

7. Shell Programming and Scripting

SFTP-how to log individual sftp command error while executing shell script

Hi, I have situation where i need to automate transferring 10000+ files using sftp. while read line do if ; then echo "-mput /home/student/Desktop/folder/$line/* /cygdrive/e/folder/$line/">>sftpCommand.txt fi done< files.txt sftp -b sftpCommand.txt stu@192.168.2.1 The above... (1 Reply)
Discussion started by: noobrobot
1 Replies

8. UNIX for Dummies Questions & Answers

need help with rename

hi guys i am writing a script to change the filename which is enterered as input to lower case letter even if one letter is upper case i have to change it to lower case i get the input and use sed comand should i use like that sed/s/a-z/A-Z/d will it be like that can u please help me (8 Replies)
Discussion started by: farhan_t49
8 Replies

9. AIX

SFTP Failed---Request for subsystem 'sftp' failed on channel 0

Hi, While I am trying SFTP my machine to another unix machine , it was working fine till 10 min back. But now i am getting the below error "Request for subsystem 'sftp' failed on channel 0" Could you please someone help me to solve or analyise the root cause... Cheers:b:, Mahiban (0 Replies)
Discussion started by: mahiban
0 Replies

10. UNIX for Advanced & Expert Users

sftp rename not over writing

Hi, I have an sftp script : put file1.txt file1.txt.cp rename file1.txt.cp myfile.txt But the problem is, if the file myfile.txt exists at the remote location, the sftp fails to overwrite. How do I make it over writing. I am using ssh version OpenSSH_4.1, OpenSSL 0.9.7e 25... (2 Replies)
Discussion started by: shihabvk
2 Replies
Login or Register to Ask a Question