Posts

Showing posts with the label FTP Server

Setup FTP Server

Image
Setup FTP Server FTP server is used to exchange files between computers over network . This guide helps you to setup ftp server on centos 7 . This guide contains configuration steps for both FTP and SFTP as well as user creation . Here i’ve used VSFTP package which is secure and less vulnerable . 1.   FTP Server 2.   SFTP Server 3.   User creation Setup FTP server on centos 7 Step 1 »   Update your repository and install VSFTPD package . [root@krizna ~]# yum check-update [root@krizna ~]# yum -y install vsftpd Step 2 »   After installation you can find   /etc/vsftpd/vsftpd.conf   file which is the main configuration file for VSFTP. Take a backup copy before making changes . [root@krizna ~]# mv /etc/vsftpd/vsftpd.conf /etc/vsftpd/vsftpd.conf.org Now open the file and make changes as below [root@krizna ~]# nano /etc/vsftpd/vsftpd.conf Find this line   anonymous_enable=YES   ( Line no : 12 ) and change value to NO to disable anonymous FTP ...