yum本地源及網路源配置

shawnloong發表於2016-10-08

本地yum伺服器配置及網路yum配置

1.本地yum源
setenfoce 0
/etc/init.d/iptables stop
mount -o loop redhat6.7.iso /mnt/
mkdir -pv /yum/repo
cp -avf /mnt/* /yum/repo


vim /etc/yum.repos.d/local.repo
[rhel6.7]
name=rhel6.7
baseurl=file:///yum/repo
enabled=1
gpgcheck=0




yum clean all
yum makecache


2. 配置網路yum源
yum -y install httpd
修改網站root路徑
vim /etc/httpd/conf/httpd.conf 
DocumentRoot "/yum/repo"
/etc/init.d/httpd restart


修改客戶端repo
新增
vim /etc//yum.repos.d/local.repo
[rhel6.7]
name=rhel6.7
baseurl=
enabled=1
gpgcheck=0


3.啟用阿里雲源
wget -O /etc/yum.repos.d/CentOS-Base.repo
wget -O /etc/yum.repos.d/epel.repo


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24486203/viewspace-2125945/,如需轉載,請註明出處,否則將追究法律責任。

相關文章