Blogger Information
Blog 27
fans 0
comment 1
visits 46172
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
FTP服务器架设
学习使我快乐
Original
881 people have browsed it

FTP(File Transfer Protocol)是TCP/IP网络上两台计算机传送文件的协议,使得主机间可以共享文件.下面介绍在Linux环境下的FTP服务器的搭建:

1.service iptables stop 关闭防火墙

2.setenforce 0 关闭slinux

3.安装所需依赖 yum install -y gcc openssl-devel perl

4.下载pure-ftpd

curl -O https://download.pureftpd.org/pub/pure-ftpd/releases/pure-ftpd-1.0.46.tar.gz
5.tar -zxvf pure-ftpd-1.0.46.tar.gz

6../configure --prefix=/usr/local/pureftpd --without-inetd --with-altlog --with-puredb --with-throttling --with-tls

7.make &7 make install

8.修改配置文件

mkdir /user/local/pureftpd/etc

cp pure-ftpd.conf /usr/local/pureftpd/etc/

修改:/usr/local/pureftpd/etc/pureftpd.pdb 如下

PureDB /usr/local/pureftpd/etc/pureftpd.pdb

PIDFile  /var/run/pure-ftpd.pid

9.控制文件

cp /pam/pure-ftpd/usr/local/pureftpd/sbin/

chmod 755 /usr/local/pureftpd/sbin/pure-ftpd

10.启动服务

./sbin/pure-ftpd./etc/pure-ftpd.conf

检查:netstat -tunpl

11.添加管理用户

useradd test
mkdir -p test:test /var/www/html/

./bin/pure-pw useradd ftp user1 -u test -d /var/www/html

ftp_user1: ftp 登录用户名

-u: 指定系统中存在的用户

-d:指定访问的目录

12.创建虚拟的用户数据库

./bin/pure-pw mkdb

    免责声明:本文来源于,由网友提供或网络搜集,仅供个人研究、交流学习使用,不涉及商业盈利目的。如有版权问题,请联系本站管理员予以更改或删除。优知网会定期发布程序开发相关趋势文章,包括 PHP、 Linux、 Mysql 等领域,敬请关注!最后大家可以扫描下方的赞赏码支持我,感谢大家!

微信赞赏小.png

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post