proftp修改FTP目录【原创】

发布时间 2023-04-19 15:08:16作者: paul_hch

需求:proftp修改FTP目录

1、修改proftp的配置文件

vi /etc/proftpd.conf
<Directory /u01/uploadFile/ > # 修改目录
  <Limit write>
    AllowUser kams
    DenyALL
  </Limit>
</Directory>

2、修改proftp用户的家目录

usermod -d /u01/uploadFile/ ftpuser

3、重启proftp服务