1.1 在yum服务器上创建yum仓库命令
1 mkdir -p /nginx/html/yum 2 cd /nginx/html/yum
rz #上传rpm包到此目录
1.2 安装createrepo软件
1 yum install createrepo -y
1.3 初始化repodata索引文件
1 createrepo -pdo /nginx/html/yum/ /nginx/html/yum/
1.4 提供yum服务
1 # 可以用Apache或nginx提供web服务,但用Python的http模块更简单,适用于内网环境。 2 cd /application/nginx/html/yum/ 3 python -m SimpleHTTPServer 80 &>/dev/null &
1.5 添加新的rpm包
1 # 只下载软件不安装 2 yumdownloader pcre-devel openssl-devel 3 createrepo --update /nginx/html/yum/ 4 # 每加入一个rpm包就要更新一下。
1.6 客户端配置
1 cd /etc/yum.repos.d 2 [root@test yum.repos.d]# cat weijing.repo 3 [weijing] 4 name=Server 5 baseurl=http://192.168.1.10/yum/ 6 enable=1 7 gpgcheck=0 8 yum --enablerepo=weijing --disablerepo=base,extras,updates,epel list 9 10 # 指定使用weijing库
添加yum源的时候只需要添加一个新的repo文件即可。