FTP (File Transfer Protocol)是向服務器傳輸文件的一種選擇。服務器端咱們廣泛採用 vsftpd 搭建 FTP Server。FTP 客戶端遍及各平臺。強烈推薦一個FTP客戶端yumm.bash
<!-- more -->服務器
使用 yum 安裝測試
更新 yum: yum -y update
rest
安裝 vsftpd: yum install vsftpd
code
vsftpd 服務管理blog
建立開機自啓動服務:systemctl enable vsftpd.service
get
開啓服務:service vsftpd start
class
中止服務:service vsftpd stop
登錄
重啓服務:service vsftpd restart
服務器端
測試是否可訪問
使用 ftp 命令嘗試登陸,此時開啓了匿名登錄,用戶名爲 ftp,密碼爲空。
編輯 vsftpd.conf ,更改 vsftpd 服務運行參數。
anonymous_enable=NO
pasv_enable=YES pasv_min_port=40000 pasv_max_port=40080
useradd -g ftp -d /var/www -s /sbin/nologin ftpuser
passwd ftpuser