Centos 开启SFTP
时间: 2023-06-17 22:08:29 浏览: 115
centos7 搭建sftp服务器以及开启日志
要在Centos上开启SFTP,您可以按照以下步骤操作:
1. 安装OpenSSH服务器:在终端中运行以下命令:
```
sudo yum install openssh-server
```
2. 修改SSH配置:打开SSH配置文件`/etc/ssh/sshd_config`,并确保在文件中添加以下行:
```
Subsystem sftp /usr/libexec/openssh/sftp-server
```
确认以下行没有被注释:
```
#RSAAuthentication yes
#PubkeyAuthentication yes
#AuthorizedKeysFile .ssh/authorized_keys
#PasswordAuthentication yes
```
将`PasswordAuthentication`设置为`yes`以允许使用用户名和密码进行身份验证。
3. 重启SSH服务:在终端中运行以下命令:
```
sudo systemctl restart sshd
```
现在,您应该可以使用SFTP连接到Centos服务器了。
阅读全文