Centos 7 部署YUM仓库

Centos 7

Centos 7 局域网部署 YUM 源仓库

1. 关闭 SELinux

setenforce 0
sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
Bash
Copy

2. 配置 DNS

echo nameserver 8.8.4.4 >> /etc/resolv.conf
echo nameserver 8.8.8.8 >> /etc/resolv.conf
echo nameserver 1.1.1.1 >> /etc/resolv.conf echo nameserver 223.5.5.5 >> /etc/resolv.conf echo nameserver 223.6.6.6 >> /etc/resolv.conf
Bash
Copy

3. 配置源

rm -rf /etc/yum.repos.d/*

curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
curl -o /etc/yum.repos.d/epel-7.repo http://mirrors.aliyun.com/repo/epel-7.repo
curl -o /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat-stable/jenkins.repo
rpm --import http://pkg.jenkins-ci.org/redhat-stable/jenkins-ci.org.key rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm yum install -y epel-release
Bash
Copy

4. 安装 createrepo

yum -y install createrepo
yum -y install yum-utils
Bash
Copy

5. 创建目录

mkdir /YUM
Bash
Copy

6. 安装 Apache

yum -y install httpd
Bash
Copy

7. 配置仓库路径

ln -s /YUM /var/www/html/Centos
Bash
Copy

8. 启动 vsftpd

systemctl start httpd
systemctl enable httpd
Bash
Copy

9. 配置防火墙

firewall-cmd --add-port=80/tcp --permanent
firewall-cmd --reload
Bash
Copy

10. 配置 repo

(
cat <<EOF
[base]
name=Local YUM base
baseurl=http://192.168.65.253/Centos/base
gpgcheck=0
enabled=1

[epel]
name=Local YUM epel
baseurl=http://192.168.65.253/Centos/epel
gpgcheck=0
enabled=1

[extras]
name=Local YUM extras
baseurl=http://192.168.65.253/Centos/extras
gpgcheck=0
enabled=1

[updates]
name=Local YUM updates
baseurl=http://192.168.65.253/Centos/updates
gpgcheck=0
enabled=1

[jenkins]
name=Local YUM jenkins
baseurl=http://192.168.65.253/Centos/jenkins
gpgcheck=0
enabled=1

[webtatic]
name=Local YUM webtatic
baseurl=http://192.168.65.253/Centos/webtatic
gpgcheck=0
enabled=1
EOF
) > /YUM/CentOS7.repo
Bash
Copy

11. 同步源

cd /YUM

reposync -n -d -r extras
reposync -n -d -r updates
reposync -n -d -r base
reposync -n -d -r epel
reposync -n -d -r jenkins
reposync -n -d -r webtatic
Bash
Copy

12. 创建 repo 库

mkdir /YUM/base/repodata/
mkdir /YUM/epel/repodata/
mkdir /YUM/extras/repodata/
mkdir /YUM/updates/repodata/
mkdir /YUM/jenkins/repodata/ mkdir /YUM/webtatic/repodata/ yum clean all yum makecache /bin/cp -f /var/cache/yum/x86_64/7/base/*.* /YUM/base/repodata/ /bin/cp -f /var/cache/yum/x86_64/7/epel/*.* /YUM/epel/repodata/ /bin/cp -f /var/cache/yum/x86_64/7/extras/*.* /YUM/extras/repodata/ /bin/cp -f /var/cache/yum/x86_64/7/updates/*.* /YUM/updates/repodata/ /bin/cp -f /var/cache/yum/x86_64/7/jenkins/*.* /YUM/jenkins/repodata/ /bin/cp -f /var/cache/yum/x86_64/7/webtatic/*.* /YUM/webtatic/repodata/
Bash
Copy

13. 下载 rpm 包及依赖到 packages

yumdownloader -y --resolve --destdir=/YUM/packages nginx mariadb-server mariadb php56w php56w-mysql php56w-gd  php56w-imap php56w-ldap php56w-odbc php56w-pear php56w-xml php56w-xmlrpc php56w-mbstring php56w-mcrypt php56w-bcmath php56w-mhash php56w-fpm php56w-opcache jenkins zlib zlib-devel libffi-devel openssl-devel glibc make binutils gcc libaio bc flex bash-completion httpd subversion mod_dav_svn java autoconf automake curl gcc git libmnl-devel libuuid-devel lm_sensors make MySQL-python nc pkgconfig python python-psycopg2 PyYAML zlib-devel '@Development Tools'
Bash
Copy

14. 创建 repo

createrepo -v /YUM/packages
Bash
Copy

转载于:https://www.cnblogs.com/nullnullnull/p/11114510.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值