1. Para configurar un servidor FTP, asegúrese de que el paquete vsftpd esté instalado. Para verificar si el paquete vsftpd está instalado, use el siguiente comando:
# rpm -q vsftpd
2. Instale el rpm del servidor vsftpd desde Red Hat Network ejecutando el siguiente comando:
# up2date vsftpd Fetching Obsoletes list for channel: el4_i386_latest... ######################################## Fetching Obsoletes list for channel: el4_i386_oracle... Fetching rpm headers... ######################################## Name Version Rel ---------------------------------------------------------- vsftpd 2.0.1 9.el4 i386 Testing package set / solving RPM inter-dependencies... ######################################## vsftpd-2.0.1-9.el4.i386.rpm Preparing ########################################### [100%] Installing... 1:vsftpd ########################################### [100%]
3. Una vez instalado, inicie el servicio vsftpd emitiendo el siguiente comando:
# service vsftpd start
4. Para que el servicio esté disponible para la siguiente secuencia de arranque, chkconfig active el servicio emitiendo el siguiente comando:
# chkconfig vsftpd on
5. Verifique si la instalación está funcionando.
# ftp localhost Connected to localhost.localdomain. 220 (vsFTPd 2.0.5) 530 Please login with USER and PASS. 530 Please login with USER and PASS. KERBEROS_V4 rejected as an authentication type Name (localhost:root): oracle 331 Please specify the password. Password: 230 Login successful. Remote system type is UNIX. Using binary mode to transfer files.