Linux, how to run "sftp-server"?

I am not very familiar with it, but openssh/sftp-server(the provider was previously installed ) on it RHEL, and it was well started before rebooting the server. Then when I check after reboot:

# ps aux | grep ftp

No sftp, but sshdthere is.

So how do I do to run this sftp?

+5
source share
2 answers

You need to add the following line to the / etc / ssh / sshd _config file:

Subsystem sftp /usr/libexec/openssh/sftp-server

or

Subsystem sftp /usr/lib/openssh/sftp-server
+10
source
Subsystem

sftp , openssh. ( ), , sftp sftp.

+1

All Articles