sftp log file


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers sftp log file
# 1  
Old 06-09-2008
sftp log file

Hi,

I am running this command to sftp a file:

sftp -o identityfile=/blah/blah/.ssh/key blah@mass019 > log.log

I want to write the output to a log file, but for some reason when the sftp errors out the log file is empty. It seems that it writes to the log only if the connection is successful. I need a log when the sftp errors out. Help please? any ideas???

Thank you!
# 2  
Old 06-09-2008
Errors are written to stderr not stdout.

add the following to the very end of your command:
Code:
2>&1

# 3  
Old 06-10-2008
Thank you!!!! Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Sftp log

hi guy i'd like to konw a method where can i save the output of sftp transation For Exampl sftp myuser@myip << EOF ls -l Path EOF I want to save an a file "ls" Thanks for all Regards Code tags please (2 Replies)
Discussion started by: Francesco_IT
2 Replies

2. Shell Programming and Scripting

Failure of sftp send to log file

I want to transfer all details of sftp connection into a log file and spawn sftp $PCMSu@$FTP_LOC >> log_file is not working for me. Please suggest how to send the data to a log file that has all information if sftp connection is successful or not? Script that I am using: #!/usr/bin/expect... (7 Replies)
Discussion started by: Geeta Yadav
7 Replies

3. Shell Programming and Scripting

Write log file for SFTP command

Hi I am transferring files to SFTP Server using sftp command(below), and want to write log file of this activity. Can you please advise if i am doing wrong. sftp -v -oIdentityFile=/home/bbm_user/bbm/private_open_ssh.ppm umf-sftp@bbm-prod-send.com <<EOF put $local_path/*.gz $remote_path/... (3 Replies)
Discussion started by: cnrj
3 Replies

4. Solaris

Enabling SFTP log on Solaris

Hi Guys, Hope you can shed the light to this issue. I have enabled SFTP logging on Linux this way and it works: But trying this on Solaris it wont work, the ssh goes to maintenance in when checking with svcs. The logs said a syntax error it doesn't recognize "-l" (3 Replies)
Discussion started by: batas
3 Replies

5. Shell Programming and Scripting

Sftp-Script log file

Hi, I would like to handle the each file start and end time of the file transfer using sftp command. Can you please advise. (1 Reply)
Discussion started by: koti_rama
1 Replies

6. 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

7. Solaris

xtransfer log on SFTP

Dear all I need a way of logging file transfers on SFTP Solaris 10. We currently use SUNSSH 1.1 (which is a modified version of OPENSSH ??), but it doesn't support logging, newer versions of OPENSSH do. Where can I obtain the new OPENSSH (openssh.org only has source code, I'd prefere... (1 Reply)
Discussion started by: wjones
1 Replies

8. Solaris

SFTP log question

On a Sun Solaris 9 box, how do I know what kind of SFTP server is running? And, if someone sftp'ed a file to my box, where is the log file I can check if the sftp session was a successful one or not? (1 Reply)
Discussion started by: fld2007
1 Replies

9. AIX

sftp log file

Hello. we're using sftp to send 2 files to a remote system. It seems that for every 'good' SFTP entry in the log - it is preceded immediately by an error - generally separated by a single second...but sometimes with the exact same timestamp. any idea why that is? sftp.log: 02/17/09 at... (1 Reply)
Discussion started by: udelalv
1 Replies

10. UNIX for Dummies Questions & Answers

logging SFTP details in a log file...

hi all..... i want to know how to log the details when logging into a server using SFTP......in FTP i used something like (ftp -uv<xxx.srp>>log_file.log) where the details will be logged to log_file...is there any options for doing the same in SFTP....i wanted to display the details abt... (4 Replies)
Discussion started by: santy
4 Replies
Login or Register to Ask a Question