1. 阿里云搭建ftp服务器
1.1 安装ftp服务器
1、安装vsftp,sudo apt-get install vsftpd
2、修改配置sudo vi /etc/vsftpd/vsftpd.conf
3、设置ftp服务开机自动启动,systemctl enable vsftpd.service
4、启动ftp服务器,systemctl start vsftpd.service
5、查看ftp服务的监听端口,netstat -antup | grep ftp(默认监听端口号为21)
/etc/vsftpd/vsftpd.conf 文件如下,可自行选择配置。
# Example config file /etc/vsftpd/vsftpd.conf
#
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults.
#
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
# capabilities.
#
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=YES
#
# Uncomment this to allow local users to log in.
# When SELinux is enforcing check for SE bool ftp_home_dir
local_enable=YES
#
# Uncomment this to enable