搭建ftp服务(yum源)

在Linux上我们少不了安装软件,在centos7中有两种方法rpm与yum安装方式。但在我们用rpm安装过程中你会发现,我们往往装个软件命令行要写的很长,要写那个包的完整路径。有时候还要解决包的依赖问题,那么有没有一种短一点的呢?
那就是我们配yum源来安装,基本用yum install {rpmfile}就可以安装,不仅方便还解决了包之间的依赖问题。那么最大的问题就是创建yum仓库。
下面我们搭建一个属于自己的ftp(yum源)仓库:
1.我们要准备光盘(centos 6 准备6的光盘,centos7准备7的光盘);
2.安装ftp所需的程序包vsftpd,默认没安装

[root@centos7 ~]#rpm -qi vsftp  
package vsftp is not installed  注:通过查询没有安装
[root@centos7 ~]#rpm -ivh /misc/cd/Packages/vsftpd-3.0.2-21.el7.x86_64.rpm  注:安装vsftpd包
warning: /misc/cd/Packages/vsftpd-3.0.2-21.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Preparing...                          ################################# [100%]
Updating / installing...
   1:vsftpd-3.0.2-21.el7              ################################# [100%]
[root@centos7 ~]#rpm -qi vsftpd  安装成功显示详细信息
Name        : vsftpd
Version     : 3.0.2
Release     : 21.el7
Architecture: x86_64
Install Date: Tue 13 Jun 2017 09:51:15 PM +10
Group       : System Environment/Daemons
Size        : 356228
.......
vsftpd is a Very Secure FTP daemon. It was written completely from
scratch.

3.启动ftp服务:

[root@centos7 ~]#netstat -ntl
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN     
tcp        0      0 192.168.122.1:53        0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN     
tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN     
tcp6       0      0 :::111                  :::*                    LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
tcp6       0      0 ::1:631                 :::*                    LISTEN     
tcp6       0      0 ::1:25                  :::*                    LISTEN  
[root@centos7 ~]#systemctl start vsftpd  注:启动ftp服务
[root@centos7 ~]#netstat -ntl   注:打开了21端口
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN     
tcp        0      0 192.168.122.1:53        0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN     
tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN     
tcp6       0      0 :::111                  :::*                    LISTEN     
tcp6       0      0 :::21                   :::*                    LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
tcp6       0      0 ::1:631                 :::*                    LISTEN     
tcp6       0      0 ::1:25                  :::*                    LISTEN 

这个启动只是相对暂时的,等到下次再启动Linux就失效了,因此我们可以设置开机启动

[root@centos7 ~]#systemctl enable vsftpd
Created symlink from /etc/systemd/system/multi-user.target.wants/vsftpd.service to /usr/lib/systemd/system/vsftpd.service.

注:在centos上安装方式一样,但启动有点不一样:

[root@centos6 ~]#service vsftpd start 注:启动服务打开21端口
Starting vsftpd for vsftpd:                                [  OK  ]
[root@centos6 ~]#chkconfig vsftpd on注:开机启动

现在我们可以看到有了这个文件夹

[root@centos7 ~]#cd /var/ftp
[root@centos7 ftp]#ls
pub
[root@centos7 pub]#touch hello.txt  注:在ftp/pub下创建一个文件
[root@centos7 pub]#cat >hello.txt
hello world!
[root@centos7 pub]#ls
hello.txt

我们可以通过ifconfig来查询IP通过IP访问下,我们会发现我们并不能打开它!

[root@centos7 ~]#ifconfig
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.18.138  netmask 255.255.255.0  broadcast 192.168.18.255
       ......
ens34: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 172.17.253.83  netmask 255.255.0.0  broadcast 172.17.255.255

这是因为 我们还没有禁用防火墙,默认情况下现在还不能访问!

[root@centos7 ~]#iptables -nvL   注:查询防火墙(目前是开启状态)
Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         
    0     0 ACCEPT     udp  --  virbr0 *       0.0.0.0/0            0.0.0.0/0            udp dpt:53
    0     0 ACCEPT     tcp  --  virbr0 *       0.0.0.0/0            0.0.0.0/0            tcp dpt:53
    0     0 ACCEPT     udp  --  virbr0 *       0.0.0.0/0            0.0.0.0/0            udp dpt:67
    0     0 ACCEPT     tcp  --  virbr0 *       0.0.0.0/0            0.0.0.0/0            tcp dpt:67
99841  304M ACCEPT     all  --  *      *       0.0.0.0/0            0.0.0.0/0            ctstate RELATED,ESTABLISHED
    0     0 ACCEPT     all  --  lo     *       0.0.0.0/0            0.0.0.0/0           
 5150  708K INPUT_direct  all  --  *      *       0.0.0.0/0            0.0.0.0/0           
 5150  708K INPUT_ZONES_SOURCE  all  --  *      *       0.0.0.0/0            0.0.0.0/0           
 5150  708K INPUT_ZONES  all  --  *      *       0.0.0.0/0            0.0.0.0/0           
    0     0 DROP       all  --  *      *       0.0.0.0/0            0.0.0.0/0            ctstate INVALID
 5147  708K REJECT     all  --  *      *       0.0.0.0/0            0.0.0.0/0            reject-with icmp-host-prohibited

Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         
    0     0 ACCEPT     all  --  *      virbr0  0.0.0.0/0            192.168.122.0/24     ctstate RELATED,ESTABLISHED
    0     0 ACCEPT     all  --  virbr0 *       192.168.122.0/24     0.0.0.0/0           
    0     0 ACCEPT     all  --  virbr0 virbr0  0.0.0.0/0            0.0.0.0/0           
    0     0 REJECT     all  --  *      virbr0  0.0.0.0/0            0.0.0.0/0            reject-with icmp-port-unreachable
    0     0 REJECT     all  --  virbr0 *       0.0.0.0/0            0.0.0.0/0            reject-with icmp-port-unreachable
........
 pkts bytes target     prot opt in     out     source               destination         

Chain IN_public_log (1 references)
 pkts bytes target     prot opt in     out     source               destination         

Chain OUTPUT_direct (1 references)
 pkts bytes target     prot opt in     out     source               destination         
[root@centos7 ~]#systemctl stop firewalld.service  注:关闭防护墙
[root@centos7 ~]#iptables -nvL   注:现已关闭
Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain OUTPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination  
[root@centos7 ~]#systemctl disable firewalld.service 注:默认情况下开机启动了防火墙,如果下次还继续用,可暂时开启开机禁用防火墙。 
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
Removed symlink /etc/systemd/system/basic.target.wants/firewalld.service. 

然后我们在进行访问ftp



就可以访问了......
4.在pub下创建yum仓库并从光盘拷贝

[root@centos7 pub]#cd /var/ftp/pub
[root@centos7 pub]#mkdir centos7
[root@centos7 pub]#ls
centos7
[root@centos7 pub]#cp -ar /misc/cd/* centos7
[root@centos7 pub]#cd centos7/
[root@centos7 centos7]#ls
CentOS_BuildTag  EULA  images    LiveOS    repodata              RPM-GPG-KEY-CentOS-Testing-7
EFI              GPL   isolinux  Packages  RPM-GPG-KEY-CentOS-7  TRANS.TBL

现在我们已经拷贝完毕!可以配置yum的[name].repo文件

[root@centos7 pub]#cd /etc/yum.repos.d/
[root@centos7 yum.repos.d]#ls  注:这是原有的repo配置文件
CentOS-Base.repo  CentOS-Debuginfo.repo  CentOS-Media.repo    CentOS-Vault.repo
CentOS-CR.repo    CentOS-fasttrack.repo  CentOS-Sources.repo
[root@centos7 yum.repos.d]#mkdir backup
[root@centos7 yum.repos.d]#mv *.repo backup 注:我们可以把原有的repo文件移动到创建的backup目录下
[root@centos7 yum.repos.d]#ls 
backup
[root@centos7 yum.repos.d]#vim base.repo  注:创建新的repo文件
[root@centos7 yum.repos.d]#cat base.repo
[base]                       
name=centos 7
baseurl=ftp://192.168.18.138/pub/centos7/
gpgcheck=0

现在我们就可以正常访问ftp了,也可以用自己搭建的yum源安装软件

[root@centos7 ~]#yum install tree
Loaded plugins: fastestmirror, refresh-packagekit, security
.........
--> Running transaction check
---> Package tree.x86_64 0:1.6.0-10.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

==============================================================================================================
 Package                Arch                     Version                          Repository             Size
==============================================================================================================
Installing:
 tree                   x86_64                   1.6.0-10.el7                            base            46 k


Transaction Summary
============================================
......

如有不足请多多指教。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345

推荐阅读更多精彩内容

  • 1. 概述 日常的工作中,经常要安装和卸载软件,在linux centos的版本里提供了rpm这个命令进行安装,但...
    ghbsunny阅读 3,992评论 0 3
  • Linux 程序包管理 linux系统中的诸多程序都是由源代码编译或者由二次发行商选择性编译分布,其大部分的程序安...
    魏镇坪阅读 5,772评论 1 8
  • http://blog.csdn.net/mathewsking/article/details/8211273 ...
    liuboxx1阅读 6,040评论 1 1
  • 人生莫过如初见。 外面的小雨哗哗, 独自一人行走在街路上。 突然看到, 那是谁的背影? 回想那年初秋, 也是这样的...
    韩思羽阅读 275评论 0 0
  • 隔天一早,郑薇惯例坐在了葡萄架下,眯个小眼,翘着小腿,自诩颇有 “偷得浮生半日闲” 的味道。 刚数...
    我是胡小白阅读 262评论 0 1