提前關閉selinux 和firewalld防火牆
1.安裝vsftp軟體包
$ yum -y install vsftpd*
2.啟動vsftpd伺服器
$ systemctl restart vsftpd
$ systemctl enable vsftpd
3.檢查服務是否正常啟動
$ ps -ef|grep vsftp && netstat -tunlp|grep 21
至此 匿名使用者的ftp已經搭建完成
$ vim /etc/vsftpd/vsftpd.conf
anon_upload_enable=yes #允許匿名使用者上傳
anon_mkdir_write_enable=yes #允許匿名使用者建立目錄
$ chown -r ftp /var/ftp/pub/ #賦予子目錄ftp使用者所屬組的許可權
#這樣就建立了ftp1這個虛擬使用者,密碼為123456
$ db_load -t -t hash -f /etc/vsftpd/loginusers.conf /etc/vsftpd/loginusers.db
$ chmod 600
/etc/vsftpd/loginusers.db
$ vim /etc/pam.d/vsftpd
# 注釋掉原來所有內容後,增加下面的內容
auth sufficient /lib64/security/pam_userdb.so db=
/etc/vsftpd/loginusers
account sufficient /lib64/security/pam_userdb.so db=
/etc/vsftpd/loginusers
$ mkdir /etc/vsftpd/userconf #建立虛擬使用者配置檔案目錄
$ vim /etc/vsftpd/userconf/ftp1 #這裡的檔名必須與前面指定的虛擬使用者名稱一致
local_root=
/home/vsftpd/ftp1/
write_enable=yes
$ vim /etc/vsftpd/vsftpd.conf #存在的修改,不存在的增加
anonymous_enable=no #禁止匿名使用者登入
chroot_local_user=yes #禁止使用者訪問除主目錄以外的目錄
guest_enable=yes #啟動虛擬使用者
guest_username=vsftpd ## 虛擬使用者使用的系統使用者名稱
user_config_dir=
/etc/vsftpd/userconf #虛擬使用者使用的配置檔案目錄
allow_writeable_chroot=yes #最新版的vsftpd為了安全必須使用者主目錄(也就是/home/vsftpd/ftp1)沒有寫許可權,才能登入
1. ftp訪問速度特別慢,載入半天將 /etc/resolv.conf裡面全部注釋掉
2. 瀏覽器正常訪問,以目錄資料夾的形式無法訪問
windows 無法訪問此資料夾,請確保輸入的資料夾是正確的,並且你有權訪問此資料夾。
3.排查參考
企業FTP搭建
提前關閉selinux 和firewalld防火牆 1.安裝vsftp軟體包 yum y install vsftpd 2.啟動vsftpd伺服器 systemctl restart vsftpd systemctl enable vsftpd 3.檢查服務是否正常啟動 ps ef grep vsf...
ELK 企業搭建實戰 3
接上篇elk搭建文章 5 filebeat 隸屬於beats,輕量級資料收集引擎。基於原先 logstash fowarder 的原始碼改造出來。換句話說 filebeat就是新版的 logstash fowarder,目前beats包含四種工具 為什麼用 filebeat 而不用原來的 logst...
LNMP企業架構實戰
lnmp企業架構實戰 nginx工作原理 nginx web伺服器主要是由各種模組協同工作,模組從結構上分為核心模組,基礎模 塊和第三方模組,其中三類模組分別如下 1 核心模組 http模組 event模組和mail模組等 2 基礎模組 http access模組 http fastcgi模組 ht...