成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

ubuntu server 10.04上安裝proftpd

運維 系統(tǒng)運維
ubuntu server 10.04上安裝proftpd :FileZilla是一款免費而且開源的FTP工具,他包括FileZilla Client,F(xiàn)ileZilla Server兩個版本。FileZilla Server只提供了windows系統(tǒng)下的版本。本文主要講述的是ubuntu server 10.04上安裝proftpd

  ubuntu server 10.04上安裝proftpd

  首先安裝圖形化桌面

  1.   sudo apt-get install ubuntu-desktop  
  2.  

  需要等待較長的時間。(如果是 2M 的帶寬,哪么需要裝 1 到 2 個小時。)

  然后安裝中文語言 ,點擊菜單“系統(tǒng) - 系統(tǒng)管理 - 語言支持”,選中中文(中國)安裝。

  (網(wǎng)上教程很多)

  一、首先安裝 proftpd

  1.   Sudo apt-get install proftpd  
  2.  

  二、安裝 gadmin-proftpd 圖形配置程序

  1.   Sudo apt-get install gadmin-proftpd  
  2.  

  三、啟動圖形配置程序

  在命令行中輸入 gadmin-proftpd 或者通過菜單“應(yīng)用程序 — 》系統(tǒng)工具 — 》 gadmin-proftpd ”

  如果顯示 proftpd 沒有被激活,哪么說明 proftpd 服務(wù)沒有啟動,需要手工啟動,在命令行中輸入: Sudo service proftpd start ,然后再打開gadmin-proftpd 。

  Sudo service proftpd stop 是停止

  Sudo service proftpd restart 是重新啟動,

  四、替換 proftpd 默認(rèn)的配置文件

  安裝 gadmin-proftpd 之后,通過圖形界面對 proftpd 進行配置,讓 gadmin-proftpd 對應(yīng)的配置文件替換 proftpd 默認(rèn)的配置文件。

  五、證書進行認(rèn)證

  如果無法啟動,哪么需要證書進行認(rèn)證。

  給 gadmin-proftpd 安裝證書

  下載腳本 http://www.castaglia.org/openssl/contrib/cert-tool (目前證實可用)

  需要修改, openssl 和 c_bash 命令的位置,通過 whereis 找到命令的位置

  首先下載 cert-tool ,執(zhí)行命令

  Chmod 755 cert-tool 讓 cert-tool 命令可以執(zhí)行;

  然后通過 gedit ,首先對 cert-tool 進行修改,找到第 32 行,

 

  1.   # Defaults  
  2.  
  3.   my $openssl = '/usr/local/openssl/bin/openssl';  
  4.  
  5.   my $c_rehash = '/usr/local/openssl/bin/c_rehash';  
  6.  

 

  更改成下面的代碼:

  1.   # Defaults  
  2.  
  3.   my $openssl = '/usr/bin/openssl';  
  4.  
  5.   my $c_rehash = '/usr/bin/c_rehash';  
  6.  

  如果 openssl 沒有安裝,哪么首先要安裝 openssl

  1.   Sudo apt-get install openssl  
  2.  

  通過 cert-tool 生成證書

 

  1.   cert-tool --create-ca=serverca --signing-ca=self 
  2.  
  3.   cert-tool --create-cert=server --signing-ca=serverca.cert.pem --signing-key=serverca.key.pem  
  4.  

  如果生成的時候提示錯誤,解決辦法如下:

  首先到/usr/local/cert-tool , 把這個目錄下面的內(nèi)容全部清空,然后執(zhí)行上面的兩條cert-tool 命令

  將生成的證書文件拷貝到 /etc/gadmin-proftpd/certs 下面。

  TLSRSACertificateFile /etc/gadmin-proftpd/certs/server.cert.pem

  TLSRSACertificateKeyFile /etc/gadmin-proftpd/certs/server.key.pem

  TLSCACertificateFile /etc/gadmin-proftpd/certs/serverca.cert.pem

  六、如果重啟之后,proftpd 沒有啟動,解決辦法

  首先停止proftpd 服務(wù)

  1.   Sudo service proftpd stop  
  2.  

  然后從開機啟動中刪除對應(yīng)的服務(wù)

  1.   Sudo update-rc.d -f proftpd remove  
  2.  

  然后重新安裝proftpd 服務(wù)器

  1.   Sudo update-rc.d proftpd defaults  
  2.  

  重啟系統(tǒng)進行測試!成功

  七、安裝 ftp 客戶端 filezilla

  Filezilla 有 windos 和 linux 兩個版本

  1.   Sudo apt-get install filezilla  
  2.  

  安裝后,點擊菜單“應(yīng)用程序 - 互聯(lián)網(wǎng) -filezilla ”,就可以使用了。

【編輯推薦】

  1. FileZilla FTP server 安裝配置(圖)
  2. FileZilla客戶端高級體驗(圖)
  3. FileZilla FTP服務(wù)器源代碼分析(2)
  4. FileZilla FTP服務(wù)器源代碼分析(4)
  5. FileZilla Ftp 教程
  6. FileZilla FTP Server安裝教程
  7. Filezilla server 安裝指南

 

責(zé)任編輯:zhaolei 來源: CSDN網(wǎng)
相關(guān)推薦

2010-05-25 09:04:55

2011-03-03 09:04:25

2011-03-03 14:47:35

2011-03-03 14:47:35

2011-03-03 13:32:07

Proftpd安裝

2011-02-25 14:35:06

ubuntuproftp安裝

2011-03-03 11:06:44

Ubuntu安裝ProFTPD

2011-02-23 09:47:07

2011-02-23 09:47:07

UbuntuProFTPdMySQL

2010-05-11 14:58:32

Ubuntu 10.0安裝

2011-03-21 16:37:57

2011-04-22 16:14:37

UbuntuMediaWiki

2011-09-07 16:43:10

ubuntuwindowsXP

2011-08-29 11:32:44

UbuntuiPhone

2011-03-08 17:04:10

ProFTPDUbuntu

2011-02-22 16:24:30

2017-08-09 13:13:25

LinuxUbuntuZabbix

2011-03-02 17:21:00

Ubuntupure-ftpd

2011-02-25 15:55:25

unixProftpd

2011-08-29 14:40:04

UbuntuAndroid
點贊
收藏

51CTO技術(shù)棧公眾號

主站蜘蛛池模板: 国产欧美综合在线 | 国产精品久久一区二区三区 | 亚洲视频一区在线播放 | 色99视频 | 成人在线免费网站 | 一区二区三区四区日韩 | 久久综合久久久 | 国产成人av在线播放 | 男女羞羞免费视频 | 久久成人国产精品 | 国产精品久久久久免费 | 日本一区二区电影 | 欧美片网站免费 | 久久精品女人天堂av | 亚洲不卡在线观看 | 亚洲精品久久久一区二区三区 | 日韩高清在线 | 99精品国产一区二区三区 | 欧美激情五月 | 中文字幕视频在线观看免费 | 日韩a| 欧一区二区 | 欧美不卡在线 | 日韩成人免费在线视频 | 天堂久 | 亚洲精品福利在线 | 久久草视频 | av网站免费 | 伊人艹 | 91久久网站| 久久剧场| 亚洲精品中文字幕在线观看 | 毛片免费观看视频 | av手机在线免费观看 | 人人干人人玩 | 91精品国产一区二区三区 | 成人欧美一区二区三区在线播放 | 欧美日韩精品免费观看 | 亚洲一区中文字幕在线观看 | 亚洲精品一区二区网址 | 亚洲精品小视频在线观看 |