Konfigurasi FTP (File Transfer Protocol)
1) apt-get install
proftpd
Run proftpd : standalone
2) mkdir /data/
3)
mkdir /data/data1
5)
useradd -d /data/
ricky
6)
passwd ricky
7) nano
/etc/proftpd/proftpd.conf
# Set off to disable IPv6 support
which is annoying on IPv4 only boxes.
UseIPv6 off
# If set on you can experience a
longer connection delay in many cases.
IdentLookups
off
ServerName
"ftp.itservice5.co.id"
ServerType
standalone
DeferWelcome off
{ke baris paling bawah dan tambahkan}
<Anonymous /data/>
User ricky
UserAlias anonymous ricky
</Anonymous>
8) chmod 777
/data
9) chmod 755
/data/data1
10) /etc/init.d/proftpd
restart
Post a Comment