Setup FTP Linux#
- Install FTP
yum install vsftpd
- Configure
vi /etc/vsftpd/vsftpd.conf anonymous_enable=NO
chkconfig vsftpd on
- Create User to access Apache home
useradd -g apache -d /home/user user passwd user
- Start Service
service vsftpd start
- Set permissions
vi /etc/group apache:x:##:user
- Create link to Apache home
ln -s /var/www/html /home/user/html
- Set permissions in web root
chgrp -R apache * chown -R apache * chmod -R 775 *
Back to Linux
Add new attachment
Only authorized users are allowed to upload new attachments.
«
This page (revision-6) was last changed on 12-Mar-2010 12:48 by Hyve Support