1. yum makecache
    2. #查看repo标识
    3. yum repolist
    4. #同步base库
    5. reposync -r base -p /mnt/yum/ #如果没有这个命令,先安装: yum install yum-utils- y
    6. #安装createrepo
    7. yum install createrepo
    8. #制作yum源,生成索引信息,-o指定目录,-p格式化xml
    9. createrepo -po /mnt/yum/base /mnt/yum/base
    10. #后续更新了rpm软件库包的文件后,利用createrepo update进行同步
    11. createrepo --update /mnt/yum/base
    12. #配置yum源地址
    13. #清理缓存,重新缓存
    14. yum clean all
    15. yum makecache

    _注:_reposync -r base -p /mnt/yum/ 同步下载源时,可以不指定 repoid,默认下载所有开启的yum仓库
    reposync - n -p /mnt/yum/
    -n :下载最新的

    nginx配置使用

    1. server {
    2. listen 80 default_server;
    3. listen [::]:80 default_server;
    4. server_name _;
    5. root /usr/share/nginx/html;
    6. # Load configuration files for the default server block.
    7. include /etc/nginx/default.d/*.conf;
    8. location / {
    9. root /mirror;
    10. autoindex on;
    11. }
    12. error_page 404 /404.html;
    13. location = /404.html {
    14. }
    15. error_page 500 502 503 504 /50x.html;
    16. location = /50x.html {
    17. }
    18. }