linux实战教学,Linux教学总结

首页 > 教育培训 > 作者:YD1662023-10-24 18:29:55

搭建企业内部yum仓库

yum仓库架构详解

自己搭建内部yum仓库

linux实战教学,Linux教学总结(9)

linux实战教学,Linux教学总结(10)

linux实战教学,Linux教学总结(11)

yum仓库服务端

创建目录

/app/yumlocal

解压软件包到/app/yumlocal目录下

php72w-new.tar.gz

通过creatrepo在这个目录中生成rpm包列表(属性信息文件)

yum install -y createrepo createrepo /app/yumlocal/ 目录下面就多了个repodata目录.

安装与配置nginx

#关闭已有的 nginx pkill nginx ps -ef |grep nginx #安装 yum install -y nginx #启动 systemctl enable nginx systemctl start nginx #检查端口与进程 #浏览器访问

配置nginx

[root@oldboy83-prod tools]# cat /etc/nginx/conf.d/yumlocal.conf server { listen 12306; root /app/yumlocal; autoindex on; index index.html; } systemctl restart nginx ss -lntup |grep nginx tcp LISTEN 0 128 *:12306 *:* users:(("nginx",pid=10460,fd=6), ("nginx",pid=10458,fd=6)) tcp LISTEN 0 128 *:80 *:* users:(("nginx",pid=10460,fd=7), ("nginx",pid=10458,fd=7)) tcp LISTEN 0 128 [ ]:80 [ ]:* users:(("nginx",pid=10460,fd=8), ("nginx",pid=10458,fd=8))

浏览器访问测试 http: 10.0.0.200:12306

linux实战教学,Linux教学总结(12)

上一页1234下一页

栏目热文

文档排行

本站推荐

Copyright © 2018 - 2021 www.yd166.com., All Rights Reserved.