vsftpd ( 非常安全的文件传输协议守护进程) 是Unix/Linux系统中的一个安全快速的FTP服务器。 在这篇指导教程中,让我们看看在openSUSE 13.1中怎样使用vsftpd来配置一个基本的FTP服务器。
安装 vsftpd作为root用户登录然后输入以下命令。
# zypper in vsftpd启动 vsftpd 服务然后通过设置使它在每次系统重启时自动启动。
# systemctl enable vsftpd.service # systemctl start vsftpd.service 配置 vsftpd为ftp用户新建一个文件夹。
# mkdir /srv/ftp创建一个名为 ftp-users 的组。
# groupadd ftp-users让我们来创建一个叫unixmen的示例用户 并设置其主目录为 /srv/ftp 组为 ftp-users 。
# useradd -g ftp-users -d /srv/ftp/ unixmen为新用户设置密码。
# passwd unixmen使ftp主目录 /srv/ftp/ 可以被ftp用户所访问。
# chmod 750 /srv/ftp/ # chown unixmen:ftp-users /srv/ftp/编辑 vsftpd.conf 文件
# nano /etc/vsftpd.conf设置如下的更改。
[...] #Uncomment and Set YES to enable write. write_enable=YES [...] # Uncomment and Set banner name for your website ftpd_banner=Welcome to Unixmen FTP service. [...] # Uncomment ls_recurse_enable=YES [...] # Uncomment and set YES to allow local users to log in. local_enable=YES [...] # To disable anonymous access, set NO. anonymous_enable=NO [...] # Uncomment to enable ascii download and upload. ascii_upload_enable=YES ascii_download_enable=YES [...] ## Add at the end of this file ## use_localtime=YES保存并退出文件。
测试本地FTP服务器首先 让我们按如下步骤尝试登录FTP服务器
# ftp localhost Trying ::1:21 ... Connected to localhost. 220 (vsFTPd 3.0.2) Name (localhost:root): unixmen 331 Please specify the password. Password: 230 Login successful. Remote system type is UNIX. Using binary mode to transfer files. ftp>正如你在上面所输出的那样, 我们能够用unixmen用户登录到ftp服务器。
推荐阅读:
Ubuntu实用简单的FTP架设
Ubuntu 13.04 安装 LAMP\vsftpd\Webmin\phpMyAdmin 服务及设置
RHEL6平台下SeLinux和vsftpd的匿名上传的简单案例