广告

本站里的文章大部分经过自行整理与测试

2016年12月18日星期日

Linux - XAMPP - ProFTPd 服务

$ su

1. 设置

$ gedit /opt/lampp/etc/proftpd.conf

Port 21
DefaultRoot /home/%u/public_ftp

UseReverseDNS off
IdentLookups off


重启..

2. 创建 ftp 用户组

$ groupadd ftpusers

3. 创建用户 jason 加入用户组 ftpusers

$ useradd -s /bin/bash -d /home/jason -g ftpusers -m jason
$ passwd jason

$ cd /home/jason
$ mkdir public_ftp
$ chmod -R 777 public_ftp

4. 用 FTP 客户端连接以上服务

有了主机 IP, Port, 用户名与密码就可以了

WinSCP 
https://winscp.net/eng/download.php
  
BitKinex 
http://www.bitkinex.com/


FileZilla 客户端
http://jasonmun.blogspot.my/2016/12/linux-filezilla.html

5. 撤除用户组与用户

$ userdel -r jason
$ groupdel ftpusers

没有评论:

发表评论