紅帽linux安裝FTP服務

2021-09-26 13:42:02 字數 1483 閱讀 5134

一、配置yum源

二、使用yum命令安裝vsftpd服務

yum install vsftpd#安裝vsftpd

rpm -qa vsftpd #查詢所有安裝httpd的目錄和檔案

三、服務的啟動、停止、重啟和開機自動啟動,以vsftpd為例
systemctl start vsftpd.service  #啟動apache 

systemctl stop vsftpd.service #停止apache

systemctl restart vsftpd.service #重啟apache

systemctl enable vsftpd.service #設定開機啟動

四、配置vsftpd服務

建立ftp使用者、制定ftp目錄和限制只能ftp連線系統

mkdir  /data

useradd ftpuser -d /data -s /sbin/nologin

passwd ftpuser

五、修改vsftpd的配置檔案
vim /etc/vsftpd/vsftpd.conf

anonymous_enable=no #不允許匿名登陸

local_enable=yes #允許本地訪問

六、配置防火牆允許訪問本機21埠
firewall-cmd --permanent --add-port=21\tcp

firewall-cmd --reload #重新整理防火牆列表

firewall-cmd --list-all #檢視防火牆列表

systemctl  start  firwalld.service  #啟動防火牆

systemctl stop firwalld.service #停止防火牆

systemctl restart firwalld.service #重啟防火牆

systemctl status firwalld.service #檢視防火牆狀態

systemctl enable firwalld.service #設定開機啟動

七、關閉selinux

臨時修改selinux狀態

getenfoce    #檢視selinux狀態

setenfoce 0 #告警狀態

setenfoce 1 #開啟狀態

「永久」修改selinux狀態

vim /etc/sysconfig/selinux

selinux=enfocing #開啟selinux

selinux=permissive #告警狀態

selinux=disabled #關閉selinux

重啟後生效

八、測試 開啟cmd

ftp ip

linux 安裝 FTP服務

ftp file transfer protocol 是在網際網路上提供檔案儲存和訪問的計算機,他們依照ftp協議提供服務vsftp very secure ftp 是乙個安全,高速,穩定的ftp伺服器 模式 c s模式 埠 vim etc services 20 傳資料 21 傳指令 ftp會話包...

Linux安裝啟動FTP服務

linux伺服器預設是沒有開啟ftp服務的。也沒有ftp伺服器,為了檔案的傳輸需要用到ftp伺服器,以典型的vsftpd為例。vsftpd作為ftp伺服器,在linux系統中是非常常用的 下面就說如何在centos 6.5系統上安裝vsftp。1.檢視是否安裝vsftpd rpm qa grep v...

Linux安裝ftp服務(續)

本篇內主要是目標 實現指定使用者指定目錄的ftp上傳。一 實操階段 1.1 使用vi,開啟 etc vsftpd vsftpd.conf檔案將紅框中的內容前 去掉。2.2 指定ftp資料夾。在etc vsftpd vsftpd.conf檔案末尾增加local root var ftp pub。2.3...