*安裝ftp服務
yum install vsftpd -y
*ftp服務端配置
3、使用者資訊配置
a、/etc/vsftpd/ftpusers:位於/etc目錄下。它指定了哪些使用者賬戶不能訪問ftp伺服器,例如root等。
b、/etc/vsftpd/user_list:
# if userlist_deny=no, only allow users in this file
# if userlist_deny=yes (default), never allow users in this file, and
userlist_deny=no 允許這個檔案中的使用者訪問
userlist_deny=yes (default) 不允許這個檔案中的使用者訪問
c、/etc/vsftpd/vsftpd.conf:
anonymous_enable=no #不能匿名訪問
chroot_local_user=yes #這樣可以將使用者限制在主目錄裡,不能切換到其他目錄,提高安全性
位於/etc/vsftpd目錄下。來自定義使用者登入控制、使用者許可權控制、超時設定、伺服器功能選項、
伺服器效能選項、伺服器響應訊息等ftp伺服器的配置。
*建立ftp登入使用者
1、新增使用者
為了安全考慮不讓該使用者登入伺服器
useradd uftp -s /sbin/nologin
已經存在的使用者可以這樣設定
usermod -s /sbin/nologin
2、修改密碼
passwd uftp
接著根據提示輸入碼:123456
重新輸入密碼:123456
*防火牆設定
-a input -m state --state new -m tcp -p tcp --dport 21 -j accept
*、開啟ftp服務
/etc/init.d/vsftpd start
*、自動開機重啟
chkconfig vsftpd on
*、建立資料夾
由於要把檔案放入到備份目錄所以需要寫許可權,建議檔案的建立者都用utfp使用者
用uftp使用者建立 source_dir, backup_dir
drwxr-xr-x 2 uftp uftp 4096 3月 26 16:21 backup_dir
drwxr-xr-x 2 uftp uftp 4096 3月 26 16:21 source_dir
ftp服務的安裝與配置
1.安裝 yum install vsftpd lftp y 安裝vsftpd服務 lftp工具 systemctl start vsftpd 啟動vsftpd服務 systemctl stop firewalld 關閉防火牆 systemctl enable vsftpd 開機啟動vsftpd 2...
FTP 服務搭建與配置
ftp是file transfer protocol 檔案傳輸協議,簡稱文傳協議 的英文簡稱,用於在internet上控制檔案的雙向傳輸。ftp的主要作用就是讓使用者連線乙個遠端計算機 這些計算機上執行著ftp伺服器程式 並檢視遠端計算機中的檔案,然後把檔案從遠端計算機複製到本地計算機,或把本地計算...
unbuntu 安裝配置ftp服務
ubuntu安裝配置ftp伺服器 2007 07 20 18 33 apt get install vsftpd ps 如果提示 提示 e dpkg was interrupted,you must manually run dpkg configure a to correct the probl...