linux安装vsftpd
时间: 2023-10-13 20:26:42 浏览: 85
要在 Linux 上安装 vsftpd,可以按照以下步骤进行操作:
1. 打开终端,使用 root 用户登录系统。
2. 安装 vsftpd:
- Debian/Ubuntu 系统:运行命令 `sudo apt-get install vsftpd -y`。
- CentOS/RHEL 系统:运行命令 `sudo yum install vsftpd -y`。
3. 启动 vsftpd 服务:
- Debian/Ubuntu 系统:运行命令 `sudo service vsftpd start`。
- CentOS/RHEL 系统:运行命令 `sudo systemctl start vsftpd`。
4. 配置 vsftpd:
- 打开 vsftpd 的配置文件 `/etc/vsftpd.conf`。
- 修改以下配置项:
```
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_std_format=YES
chroot_local_user=YES
listen=YES
pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES
```
- 保存配置文件并退出。
5. 重启 vsftpd 服务:
- Debian/Ubuntu 系统:运行命令 `sudo service vsftpd restart`。
- CentOS/RHEL 系统:运行命令 `sudo systemctl restart vsftpd`。
现在你已经在 Linux 上成功安装了 vsftpd,并可以使用 FTP 客户端连接到服务器上进行文件传输了。
阅读全文