首页 > 学院 > 操作系统 > 正文

搭建yum源服务器

2024-06-28 16:02:25
字体:
来源:转载
供稿:网友

1.搭建apache服务器

可以通过apache的http服务对外发布rpm源服务

# 安装httpdyum install -y httpd# 修改httpd端口sed -i "s/^Listen.*/Listen 81/g" /etc/httpd/conf/httpd.conf# 开机启动systemctl enable httpd.service# 启动服务service httpd restart

2.安装createrepo

yum install -y createrepo

3.创建yum源rpm包索引

# 将rpm包拷贝到httpd的web目录下面,${yumRepo}为rpm包的目录cp ${yumRepo} /var/www/htmlcreaterepo -pdo /var/www/html /var/www/html

4.修改yum源访问,测试

# 取消掉基础的yum源访问mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak# 修改yum源touch /etc/yum.repos.d/htdc.repocat > /etc/yum.repos.d/htdc.repo <<EOF[htdc-base]name=htdc-basebaseurl=http://ip:portgpgcheck=0EOF# 测试yum安装下你自己发布的rpm包
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表