系统相关
首页 > 系统相关> >

作者:互联网

yum链接外网的缺点:

how如何解决此类问题——yum私有仓库的搭建

 

如何实现yum私有仓库的搭建?

  1. 利用http协议搭建企业内部的私有仓库
  2. 配置服务器

 

仓库的组成部分:

  1. 光盘的系统源
  2. yum源,epel源

 

#systemctl disbale --now firewalld  //关闭防火墙
#nano /etc/selinux/config
#SELINUX=disabled




#yum -y install httpd  //安装搭建工具
#cd /var/www/html/
#ls
#mkdir centos/{7,8} -pv //创建centos7和8,并显示路径
#tree centos/
#mount /dev/sr1 /car/www/html/centos/7
#ls /var/www/html/entos/7   //进入该目录
#
#vim /etc/yum.repos.d/base.repo  //设置yum配置
#
#

复制网站:10.0.0.8/centos/,并标注其他base

 

安装工具

#yum list vsftpd    //查看yum是否存在“vsftpd”工具
#yum install vsftpd
下载epel源
#cd /var/www/html
#dnf reposync --repoid-epel --download-metadata  -p /var/www/html
#tree epel/        //显示epel下载

标签:epel,www,10.5,centos,私有,html,yum,var
来源: https://www.cnblogs.com/Julien1021/p/16255411.html