linux ftp服務

1 安裝ftp服務
[root@localhost ~]# yum install vsftpdhtml

啓動:service vsftpd startlinux

查看狀態:systemctl |grep vsftpd服務器

 

2 編輯vsftpd的配置文件
[root@localhost ~]# vi /etc/vsftpd/vsftpd.conf
anonymous_enable=NO #禁止匿名訪問
ascii_upload_enable #容許使用ascii碼上傳
ascii_download_enable #容許使用ascii碼下載
userlist_deny=NO #(這條需手動添加到最後)

啓動vsftpd服務/etc/init.d/vsftpd start
添加開機自動啓動,chkconfig vsftpd onide

chkconfig - - list 是否已經加入了開機啓動項阿里雲

 

阿里雲下的自動開啓加密

systemctl  enable vsftpd.servide htm

 


3 能訪問的用戶添加
添加用戶 upload
useradd upload
添加密碼
passwd upload
vi /etc/vsftpd/user_list,將裏面其它初始用戶所有刪除,加入剛剛咱們新建的upload用戶,這樣子就只有upload能上傳。ip

4 linux關閉selinux ci


一、關閉iptablesit

#service iptables stop

二、關閉SELinux

#vi /etc/selinux/config

將文件中的SELINUX="" 爲 disabled ,而後重啓。
若是不想重啓系統,使用命令setenforce 0


reboot重啓Linux服務器
reboot
使用FTP登陸查看
輸入地址,ftp的帳號和密碼

5 如何修改使得全部用戶具備上傳的權限 文件在/var/www/html 下,能下載,可是不能上傳 chmod 777 /var/www/html OK!

相關文章
相關標籤/搜索