在CentOS7系統中配置ftp服務

2021-10-17 02:10:17 字數 1033 閱讀 1828

yum install -y vsftpd
systemctl enable vsftpd.service
systemctl start vsftpd.service
netstat -antup | grep ftp
useradd ftptest

passwd ftptest

mkdir /var/ftp/test # 建立乙個供ftp服務使用的檔案目錄

chown -r ftptest:ftptest /var/ftp/test # 修改該目錄的擁有者為ftptest

#除下面提及的引數外,其他引數保持預設值即可。

#修改下列引數的值

anonymous_enable=no #禁止匿名登入ftp伺服器

local_enable=yes #允許本地使用者登入ftp伺服器

listen=yes #監聽ipv4 sockets

#在行首新增#注釋掉以下引數

#listen_ipv6=yes #關閉監聽ipv6 sockets

local_root=/var/ftp/test

chroot_local_user=yes

chroot_list_enable=yes

chroot_list_file=/etc/vsftpd/chroot_list

allow_writeable_chroot=yes

pasv_enable=yes

pasv_min_port=50000

pasv_max_port=51000

pasv_address=49.235.71.50

vim /etc/vsftpd/chroot_list # 哪怕沒有例外使用者也必須建立
systemctl restart vsftpd.service

CentOS 7安裝配置vsftpd做FTP服務

linux菜鳥,還沒用過ftp服務 在windows下用的是filezilla,一開始還在想linux下也用它,因為知道它是開源的,在linux下用它更顯得理所當然了,後來發現網上介紹大多都vsftpd,所以就用vsftpd做ftp服務了。安裝在安裝前檢視是否已安裝vsftpd root local...

在CentOS 7系統中配置Python3 x

因為大部分發行版預設使用python2.x,所以配置python3.x不可避免 yum y update wget org ftp python 3.5 2 python 3.5 2.tgztar zxvf python 3.5 2.tgz可參考 鳥叔的linux私房菜 原始碼安裝 cd pytho...

在 CentOS 7 系統中安裝 Redis

作業系統 cat etc centos release centos linux release 7.7.1908 core uname kernel release 3.10.0 1062.el7.x86 64gcc 版本 gcc version gcc gcc 4.8.5 20150623 re...