Open FTP in Linux
Original link: https://www.lifengdi.com/archives/article/tech/3952 1. Install vsftpd sudo yum install -y vsftpd 2. Set vsftpd to start automatically after booting sudo systemctl enable vsftpd 3. Start the FTP service sudo systemctl start vsftpd 4. Confirm whether the service starts sudo netstat -antup | grep ftp 5. Create a user for the FTP service , for example, […]