溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

linux下怎么搭建ftp服務(wù)器及配置

發(fā)布時(shí)間:2021-09-02 17:21:48 來源:億速云 閱讀:122 作者:chen 欄目:系統(tǒng)運(yùn)維

這篇文章主要介紹“l(fā)inux下怎么搭建ftp服務(wù)器及配置”,在日常操作中,相信很多人在linux下怎么搭建ftp服務(wù)器及配置問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”linux下怎么搭建ftp服務(wù)器及配置”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!

  首先proftpd是一個(gè)開源軟件,目前最高版本是:1.3.1(非穩(wěn)定版),穩(wěn)定的版本是1.3.0,下載文件為proftpd-1.3.0a.tar.gz

  我下載的是1.3.0,上傳到服務(wù)器上后按照常規(guī)的方法安裝即可。

  tar -zxvf proftpd-1.3.0a.tar.gz

  cd proftpd*

  ./configure --prefix=/usr/local/proftpd

  make

  make install

  安裝完成!接下來是配置。

  設(shè)置一:隨機(jī)啟動(dòng)服務(wù),sbin/proftpd文件復(fù)制到/etc/rc.d/rc.local文件夾中,以實(shí)現(xiàn)開機(jī)自動(dòng)啟動(dòng)。

  設(shè)置二:配置文件在etc/proftpd.conf,配置文件說明如下:

  ServerName "ProFTPD Default Installation"

  ServerType standalone

  DefaultServer on

  分別表示:服務(wù)器名稱,服務(wù)類型和默認(rèn)服務(wù)狀態(tài)!

  后面的服務(wù)端口啊什么的我就省去不說了,說最關(guān)鍵的權(quán)限控制部分。

  # Set the user and group under which the server will run.

  User nobody

  Group nogroup

  注意看上面:以什么用戶和什么組來運(yùn)行服務(wù)。

  更改為你現(xiàn)有的組和用戶,這里為了管理上的方便和安全性上考慮,建議新建一個(gè)ftp組和ftp用戶。

  # To cause every FTP user to be "jailed" (chrooted) into their home

  # directory, uncomment this line.

  #DefaultRoot ~

  是否允許用戶進(jìn)入用戶的主目錄,注意:可是適用/home替代

  # Normally, we want files to be overwriteable.

  AllowOverwrite on

  是否具有重寫的權(quán)利

  # A basic anonymous configuration, no upload directories. If you do not

  # want anonymous users, simply delete this entire section.
  User ftp

  Group ftp

  # We want clients to be able to login with "anonymous" as well as "ftp"

  UserAlias anonymous ftp

  # Limit the maximum number of anonymous logins

  MaxClients 10

  # We want 'welcome.msg' displayed at login, and '.message' displayed

  # in each newly chdired directory.

  DisplayLogin welcome.msg

  DisplayFirstChdir .message

  # Limit WRITE everywhere in the anonymous chroot
  DenyAll

  這部分是匿名用戶的定義其實(shí)也很簡(jiǎn)單。

  啟動(dòng)不了,出現(xiàn)如下錯(cuò)誤的解決方法

  [root@new-host sbin]# ./proftpd

  - IPv4 getaddrinfo 'new-host' error: Name or service not known

  - warning: unable to determine IP address of 'new-host'

  - error: no valid servers configured

  - Fatal: error processing configuration file '/usr/local/proftpd/etc/proftpd.conf'

  原因是無法綁定Ip地址。

  在配置文件中增加下面這句:

  DefaultAddress 192.168.8.105

  再重啟服務(wù)就可以了!

  接上!原來以為這樣就完事了,可是看看才知道如果我要新增加一個(gè)FTP用戶的話實(shí)際上是很麻煩的一件事,因?yàn)閹ぬ?hào)是直接跟系統(tǒng)帳號(hào)想關(guān)聯(lián)的,不安全也不好操作,我們的目的是要做成像虛擬主機(jī)服務(wù)提供商那樣的ftp!

  接下去,需要一個(gè)模塊的支持到 去看看proftpd-mod-quotatab模塊,注意下面這句話:

  NOTE: mod_quotatab became part of the offical ProFTPD source distribution in 1.2.10rc1. If using a version of ProFTPD later than that, please use the mod_quotatab already included, as it will be most up-to-date.

  表示我們下載的1.3版本已經(jīng)支持做了這個(gè)東西,主要編譯安裝的時(shí)候把mod_quotatab 開起來就可以了,于是重新編譯!

  前提:確認(rèn)你已經(jīng)安裝并且能夠正常運(yùn)行mysql,否則后面的工作都是沒有意義的了!

  重新編譯:

  ./configure --prefix=/usr/local/proftpd --with-modules=mod_sql:mod_sql_mysql:mod_quotatab:mod_quotatab_sql --with-includes=/usr/include/mysql --with-libraries=/usr/lib/mysql

  注意請(qǐng)根據(jù)自己的Linux系統(tǒng)找到MySQL的相應(yīng)include和lib目錄,以上例子中的相關(guān)路徑是大多數(shù)Linux系統(tǒng)默認(rèn)的,如果你的MySQL是通過源碼編譯安裝的,則這兩個(gè)目錄一般在安裝路徑下。

到此,關(guān)于“l(fā)inux下怎么搭建ftp服務(wù)器及配置”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI