Selasa, 04 Januari 2011

Setup FTP Server di CentOS

Cek apakah package vsftpd sudah terinstall
rpm –qa | grep vsftpd

Jika belum installah package vsftpd
yum install vsftpd*

Edit file /etc/vsftpd/vsftpd.conf

# Allow anonymous FTP? (Beware - allowed by default if you comment this out).

anonymous_enable=NO  

# Uncomment this to allow local users to log in.

local_enable=YES

# Uncomment this to enable any form of FTP write command.

write_enable=YES

# Default umask for local users is 077. You may wish to change this to 022, 
# if your users expect that (022 is used by most other ftpd's)



local_umask=022

# Activate directory messages - messages given to remote users when they  
# go into a certain directory.

dirmessage_enable=YES

# The target log file can be vsftpd_log_file or xferlog_file.  
# This depends on setting xferlog_std_format parameter

xferlog_enable=YES

# Make sure PORT transfer connections originate from port 20 (ftp-data).

connect_from_port_20=YES

# Switches between logging into vsftpd_log_file and xferlog_file files.
# NO writes to vsftpd_log_file, YES to xferlog_file

xferlog_std_format=YES  

# It is recommended that you define on your system a unique user which the
# ftp server can use as a totally isolated and unprivileged user. #nopriv_user=ftpsecure

nopriv_user=ftp

# You may fully customise the login banner string:

ftpd_banner=Selamat Datang di SERVER FILE SMKN 6 Pontianak

# You may specify an explicit list of local users to chroot() to their home  
# directory. If chroot_local_user is YES, then this list becomes a list of  
# users to NOT chroot().

chroot_list_enable=YES

# (default follows)

chroot_list_file=/etc/vsftpd/chroot_list

# When "listen" directive is enabled, vsftpd runs in standalone mode and  
# listens on IPv4 sockets. This directive cannot be used in conjunction  
# with the listen_ipv6 directive.

listen=YES

# This directive enables listening on IPv6 sockets. To listen on IPv4 and IPv6  
# sockets, you must run two copies of vsftpd whith two configuration files.  
# Make sure, that one of the listen options is commented !! #listen_ipv6=YES

pam_service_name=vsftpd  
userlist_enable=YES  
tcp_wrappers=YES

Buat group untuk ftp  
groupadd www

Buat user untuk ftp 
useradd –g www –d /var/www/html userweb

Ubah permission folder 
chmod 755 /var/www/html

Ubah kepemilikan dari folder 
chown userweb.www /var/www/html

Mengaktifkan vsftpd ketika boot 
chkconfig vsftpd on

Menjalankan service vsftpd 
service vsftpd start

Tidak ada komentar:

Posting Komentar