自己搭建的全过程:CentOS6.4的64位系统中安装vsFTP2.2.2 ,比较全面的一个说明
CentOS6.4_X64安装配置vsFTP-2.2.2
由于工作需要配置一台FTP服务器,参考网上的一些文章,结合自己的实际配置情况,详细过程记录如下,都是真实操作的过程
环境 :
CentOS6.4_X64
Vsftpd-2.2.2-11.el6_3.1
一、安装vsftp pam db4
一般pam和db4默认系统已经安装,如果没有安装如下一并安装吧
yum install vsftpd pam* db4* -y
将vsftp配置为系统服务
chkconfig --level 35 vsftpd on
安装完成后生成如下配置文件:
[root@localhostvsftpd]# ll /etc/vsftpd/
-rw-------. 1 root root 125 Feb 19 2013 ftpusers
-rw-------. 1 root root 361 Feb 19 2013 user_list
-rw-r--r--. 1 root root 4691 Sep 17 16:54 vsftpd.conf
-rwxr--r--. 1 root root 338 Feb 19 2013 vsftpd_conf_migrate.sh
二、 建立ftp虚拟宿主帐户
#useraddvsftpd -s /sbin/nologin
vsftpd供虚拟帐户映射的系统真实用户,不需要登录shell权限
自己搭建的全过程:CentOS6.4的64位系统中安装vsFTP2.2.2 ,比较全面的一个说明
三、配置vsftpd.conf
备份现有配置文件:
[root@localhostvsftpd]# cd /etc/vsftpd/
[root@localhostvsftpd]# cpvsftpd.confvsftpd.conf.bak
下面更改配置文件:
[root@localhostvsftpd]# vivsftpd.conf
# Allow anonymous FTP? (Beware - allowed by default if you comment this out). #anonymous_enable=YES
anonymous_enable=NO //不允许匿名用户访问。
#
# Uncomment this to allow local users to log in.
local_enable=YES //设定本地用户可以访问。主要是为虚拟宿主用户,如果该项目设定为NO那么所有虚拟用户将无法访问。
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES //设定可以进行写操作。
#
# Default umask for local users is 077. You may wish to change this to 022, # if your users expect that (022 is used by most other ftpd's)
local_umask=022 //设定上传后文件的权限掩码。
#
# Uncomment this to allow the anonymous FTP user to upload files. This only # has an effect if the above global write enable is activated. Also, you will # obviously need to create a directory writable by the FTP user.
#anon_upload_enable=YES
anon_upload_enable=NO //禁止匿名用户上传。
#
# Uncomment this if you want the anonymous FTP user to be able to create # new directories.
#anon_mkdir_write_enable=YES
anon_mkdir_write_enable=NO //禁止匿名用户建立目录。
#
# Activate directory messages - messages given to remote users when they # go into a certain directory.
dirmessage_enable=YES ///设定开启目录标语功能。
#
# Activate logging of uploads/downloads.
自己搭建的全过程:CentOS6.4的64位系统中安装vsFTP2.2.2 ,比较全面的一个说明
xferlog_enable=YES
设定开启日志记录功能。
#
# Make sure PORT transfer connections originate from port 20 (ftp-data). connect_from_port_20=YES ///设定端口20进行数据连接。
#
# If you want, you can arrange for uploaded anonymous files to be owned by # a different user. Note! Using "root" for uploaded files is not
# recommended!
#chown_uploads=YES
chown_uploads=NO ///设定禁止上传文件更改宿主。
#chown_username=whoever
#
# You may override where the log file goes if you like. The default is shown # below.
xferlog_file=/var/log/vsftpd.log ///设定Vsftpd的服务日志保存路径。该文件要手动建立,并且必须给与该vsftpd用户对日志文件vsftpd.log的读写权限,否则服务将启动失败。
#
# If you want, you can have your log file in standard ftpdxferlog format xferlog_std_format=YES ///设定日志使用标准的记录格式。
#
# You may change the default value for timing out an idle session.
#idle_session_timeout=600 ///设定空闲连接超时时间,单位秒。
#
# You may change the default value for timing out a data connection.
#data_connection_timeout=120 ///设定单次最大连续传输时间,单位秒。
#
# It is recommended that you define on your system a unique user which the # ftp server can use as a totally isolated and unprivileged user.
#nopriv_user=ftpsecure
nopriv_user=vsftpd ///设定支撑Vsftpd服务的宿主用户为手动建立的Vsftpd用户。注意,一旦做出更改宿主用户后,必须注意一起与该服务相关的读写文件的读写赋权问题。比如日志文件就必须给与该用户写入权限等。
#
# Enable this and the server will recognise asynchronous ABOR requests. Not # recommended for security (the code is non-trivial). Not enabling it, # however, may confuse older FTP clients.
async_abor_enable=YES ///设定支持异步传输功能。
#
# By default the server will pretend to allow ASCII mode but in fact ignore # the request. Turn on the below options to have the server actually do ASCII # mangling on files when in ASCII mode.
# Beware that on some FTP servers, ASCII support allows a denial of service
自己搭建的全过程:CentOS6.4的64位系统中安装vsFTP2.2.2 ,比较全面的一个说明
# attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd
百度搜索“77cn”或“免费范文网”即可找到本站免费阅读全部范文。收藏本站方便下次阅读,免费范文网,提供经典小说医药卫生CentOS6.4_X64安装配置vsFTP在线全文阅读。
相关推荐: