OpenSSH versions 4.4p1 and up (which should include the latest version with CentOS 5) have SFTP logging capability built in – you just need to configure it.
Find this in your sshd_config (in centos, file /etc/ssh/sshd_config):
Subsystem sftp /usr/libexec/openssh/sftp-server
and change it to:
Subsystem sftp /usr/libexec/openssh/sftp-server -l INFO
INFO is just one level of detail over what you’re seeing by default – it provides detailed information regarding file transfers, permission changes, etc. If you need more info, you can adjust the log level accordingly. The various levels (in order of detail) are:
QUIET, FATAL, ERROR, INFO, VERBOSE, DEBUG, DEBUG1, DEBUG2, and DEBUG3
Anything over VERBOSE is probably more information than you’re looking for, but it might be useful.
Finally restart the SSH service to update the changes (centos):
systemctl restart sshd
Related Posts:
- OpenSSH: Difference between internal-sftp and sftp-server
- Is it possible to use rsync over sftp (without an ssh shell)?
- Git: How to solve Permission denied (publickey) error when using Git?
- Putty: Getting Server refused our key Error
- Copying a local file from Windows to a remote server using scp
- ssh: The authenticity of host ‘hostname’ can’t be established
- ssh “permissions are too open” error
- Permission denied (publickey,keyboard-interactive)
- How to deal with “Pseudo-terminal will not be allocated because stdin is not a terminal.”
- What is actually in known_hosts?
- ‘heroku’ does not appear to be a git repository
- How to solve “sign_and_send_pubkey: signing failed: agent refused operation”?
- How to fix request failed on channel 0
- How to scp in Python?
- Forward X11 failed: Network error: Connection refused
- PuTTY PSCP error “Local to local copy not supported” when username contains a slash
- Starting ssh-agent on Windows 10 fails: “unable to start ssh-agent service, error :1058”
- Git error: “Host Key Verification Failed” when connecting to remote repository
- Convert PEM to PPK file format
- Copying files using rsync from remote server to local machine
- How to read iPhone files without jailbreaking?
- SSH to Vagrant box in Windows?
- How to use Sublime over SSH
- Differences between SFTP and “FTP over SSH”
- Use qdel to delete all my jobs at once, not one at a time
- Paramiko’s SSHClient with SFTP
- Automating command/script execution using PuTTY
- Public and Private Keys are Incorrect for user
- How to automate SSH login with password?
- ssh returns “Bad owner or permissions on ~/.ssh/config”
- How do I change my private key passphrase?
- Create a public SSH key from the private key?
- How do diff over ssh?
- “Add correct host key in known_hosts” / multiple ssh host keys per hostname?
- SSH use only my password, Ignore my ssh key, don’t prompt me for a passphrase
- ssh-agent forwarding and sudo to another user
- Non interactive git clone (ssh fingerprint prompt) [duplicate]
- How to check sshd log?
- What does “Warning: untrusted X11 forwarding setup failed: xauth key data not generated” mean when ssh’ing with -X?
- What’s the difference between authorized_keys and authorized_keys2?
- Is my password compromised because I forgot to hit Enter after ssh username?
- How do I make ssh fail rather than prompt for a password if the public-key authentication fails?
- ssh-keygen does not create RSA private key
- What significance does the user/host at the end of an SSH public key file hold?
- SSH Suddenly returning Invalid format
- How can I prevent the warning No xauth data; using fake authentication data for X11 forwarding?
- How to recover from “Too many Authentication Failures for user root”
- Why does my OpenSSH key fingerprint not match the AWS EC2 console keypair fingerprint?
- Login without running bash_profile or bashrc
- How do I do Multihop SCP transfers between machines?
- scp without known_hosts check
- How do I validate an RSA SSH public key file (id_rsa.pub)?
- How can I run arbitrarily complex command using sudo over ssh?
- Add comment to existing SSH public key
- ssh connection takes forever to initiate, stuck at “pledge: network”
- What is the benefit of not allocating a terminal in ssh?
- bad ownership or modes for chroot directory component
- Why Block Port 22 Outbound?
- Ansible stuck on gathering facts
- SSH Allow Password For One User, Rest Only Allow Public Keys [duplicate]
- ssh : Permission denied (publickey,gssapi-with-mic)
- Could not open a connection to your authentication agent
- How to establish ssh key pair when “Host key verification failed”
- scp or sftp copy multiple files with single command
- AWS – Disconnected : No supported authentication methods available (server sent :publickey)
- Using putty to scp from windows to Linux
- SFTP in Python? (platform independent)
- mysql_config not found when installing mysqldb python interface
- SSH -X “Warning: untrusted X11 forwarding setup failed: xauth key data not generated”
- X11 forwarding request failed on channel 0
- mysql_config not found when installing mysqldb python interface
- Pseudo-terminal will not be allocated because stdin is not a terminal
- Transfer files to/from session I’m logged in with PuTTY
- How to specify the private SSH-key to use when executing shell command on Git?
- SFTP upload file Permission denied
- Getting stty: standard input: Inappropriate ioctl for device when using scp through an ssh tunnel
- Copying files from server to local computer using SSH
- key_load_public: invalid format
- EC2 ssh Permission denied (publickey,gssapi-keyex,gssapi-with-mic)
- Configure WordPress to connect to Mysql DB using SSH tunneling
- Failure to establish connection when provisioning via ansible-playbook server.yml
- Upgraded to php7.0, now ssh updates don’t work [closed]
- Unable to update WordPress or install plugins/themes
- SSH Server with WordPress
- AWS Lightsail WordPress – connect to database on instance using mysqli
- How To Upload Existing WordPress Site To WordPress Multisite Using SSH
- Configuring WordPress permissions for easy updates
- SSH git — How to pull a folder from repo, but not delete other directories & files on deployment server [closed]
- Can I automatically add a new host to known_hosts?
- Is it normal to get hundreds of break-in attempts per day?
- how to disable SSH login with password for some users?
- how do you create an ssh key for another user?
- ssh tunnel refusing connections with “channel 2: open failed”
- SSH from A through B to C, using private key on B [closed]
- Show all users and their groups/vice versa
- How can I edit the welcome message when ssh start?
- What’s wrong with always being root?
- Hundreds of failed ssh logins
- protocol version mismatch — is your shell clean?
- Why is ssh agent forwarding not working?