yum仓库搭建与使用
程序员文章站
2022-06-06 22:55:52
...
服务端搭建
1.1 修改yum配置文件
yum下载软件不清空
sed -i 's#keepcache=0#keepcache=1#g' /etc/yum.conf
1.2 创建目录用来做 YUM 仓库的使用
mkdir -p /yum/centos7
1.3 安装 createrepo 软件,用于生成 yum 仓库数据库的软件
yum -y install createrepo yum-utils
1.4 初始化repodata索引文件
cd /yum/centos7
只下载软件不安装
yumdownloader tree
#更新repodata索引文件
createrepo -pdo /yum/centos7/ /yum/centos7/
1.5提供yum服务
可以用Apache或nginx提供web服务,但用Python的http模块更简单,适用于内网环境
cd /yum/centos7/
python -m SimpleHTTPServer 81 &>/dev/null &
[aaa@qq.com centos7]# ps -ef | grep python
root 1496 1 0 13:50 ? 00:00:00 /usr/bin/python2 -Es /usr/sbin/tuned -l -P
root 8781 3748 0 14:07 pts/0 00:00:00 python -m SimpleHTTPServer 81 #确保81端口是在的
root 11262 3748 0 14:14 pts/0 00:00:00 grep --color=auto python
查看ip
ok
yum -y install nginx
cd /var/cache/yum/x86_64/
1.6添加新的rpm包
find . -name '*.rpm'|xargs -i cp {} /yum/centos7 #复制到centos7下面
find . -name '*.rpm' -exec cp {} /yum/centos7 \;
createrepo -pdo /yum/centos7/ /yum/centos7/ #更新
客户端
mv /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo.ori
cat >/etc/yum.repos.d/centos7.repo<<EOF
[centos7]
name=Server
baseurl=http://10.0.0.41:81
enable=1
gpgcheck=0
EOF
临时使用指定的自己指定的centos7 库
yum --enablerepo=centos7 --disablerepo=base,extras,updates,epel list
永久使用
sed -i -e '19a enabled=0' -e '29a enabled=0' -e '39a enabled=0' /etc/yum.repos.d/CentOS-Base.repo
测试下载
注释/etc/resolv.conf
[aaa@qq.com c7-42 yum.repos.d]# cat /etc/resolv.conf
#nameserver 223.5.5.5
#nameserver 223.6.6.6
[aaa@qq.com c7-42 yum.repos.d]# ping qq.com #外网已经不能用了
ping: qq.com: Name or service not known
客户端重新加载yum缓存并下载nginx
yum clean all
yum makecache
yum -y install nginx
推荐阅读
-
Mybatis-Plus 搭建与使用入门(小结)
-
详解使用ISO镜像搭建私有yum源
-
Mybatis-Plus 搭建与使用入门(小结)
-
详解使用ISO镜像搭建私有yum源
-
Android studio怎么使用git? 使用git查看本地与远程仓库文件的教程
-
CentOs 7.3中搭建RabbitMQ 3.6单机多实例服务的步骤与使用
-
使用Nginx反向代理与proxy_cache缓存搭建CDN服务器的配置方法
-
CentOs 7.3中搭建RabbitMQ 3.6单机多实例服务的步骤与使用
-
不要域名与服务器如何使用XAMPP本地搭建网站
-
CentOS 7.0 使用 yum 安装 MariaDB 与 MariaDB 的简单配置