centos搭建本地yum源
基础信息
1 | yum源IP:172.10.1.101 |
挂在镜像并拷贝数据
1 | #挂载DVD1.iso盘 |
创建仓库
1 | createrepo /data/www/centos/6/x86_64 |
使用nginx代理建立http访问
- 1.添加配置
1
2
3
4
5
6
7chmod 755 /data/www
#在nginx中添加配置项
root /data/www;
# 开启Nginx的目录文件列表
autoindex on;
autoindex_exact_size off;
autoindex_localtime on; - 2.测试是否访问正常
1 | curl -s http://172.10.1.101/centos/6/x86_64 |
在客户端配置使用yum源
1 | mv /etc/yum.repos.d/Centos-Base.repo{,.bak} #备份原有yum源 |
执行以下命令后即可使用
1 | yum clean all |