在Centos75安裝ftp服務

2022-03-26 09:51:54 字數 2303 閱讀 8456

1.1、安裝vsftp,測試安裝的

vsftpd

的版本是:

1.2修改配置檔案

vi /etc/vsftpd/vsftpd.conf

保證下面3項為yes

1.3設定vsftpd開機啟動

systemctl enable vsftpd.service

1.4、啟動並檢視

vsftpd

服務狀態,

systemctl

啟動服務成功不會有任何提示,綠色的

active

表示服務正在執行

2.1、安裝

2.2、使用

anonymous

登陸,無需密碼

ftp localhost

220表示服務正常,可以登陸;230表示登陸成功。

2.3、檢視

ftp伺服器資料夾資訊

3.1、關閉防火牆

systemctl stop firewalld.service

為防止機器重啟後防火牆服務重新開啟,可將防火牆服務永久關閉。

systemctl disable firewalld.service

3.2、在

window

上輸入ftp://ip

位址,可看到

ftp下的目錄(

pub為系統預設的)

到上面為止,我們發現ftp目錄下並不能讀寫檔案,這是由資料夾許可權和selinux引起的。

4.1、設定資料夾許可權,將

pub資料夾的許可權設定為

777chmod 777 -r /var/ftp/pub

4.1、關閉

selinux

服務vi /etc/selinux/config

將selinux=enforcing改為:selinux=disabled

4.3、系統重啟,讓配置生效

shutdown -r now

4.4、上傳檔案

centos 7 5安裝配置FTP伺服器

centos 7預設是沒有開啟ftp服務的,我們必須手動開啟。具體安裝開啟步驟如下 yum y install vsftpd y表示不用輸入確定,直接一路安裝到底systemctl enable vsftpdsystemctl start vsftpd.serviceps e grep ftp 列出...

CentOS 7 5 系統下安裝nginx

選擇你想要安裝的位址 cd usr local etc wget 安裝nginx執行庫 yum y install gcc gcc c automake autoconf libtool make yum y install pcre zlib openssl openssl devel 解壓ngi...

centos7 5 安裝於配置vsftpd

centos7.5 安裝於配置vsftpd 安裝vsftpd yum install y vsftpd 很順利 配置虛擬使用者登入 ftp服務一般不允許本地賬戶登入是為了提高安全性,建立ftp的使用者體系,稱之為虛擬使用者 1 建立虛擬使用者的專用目錄 mkdir home www zgy img ...