CectOS7设置代理更新阿里云yum的方法
新分配了虚拟机,安装了centos7.2版本。
因是内网机器,不能直接联外网,不过可以设置yum代理,通过另一台能上外网的服务器来更新
#cat /etc/redhat-release CentOS Linux release 7.2.1511 (Core) #vi /etc/yum.conf proxy = http://192.168.1.188:3128/ #mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup #wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo #yum makecache #yum update #cat /etc/redhat-release CentOS Linux release 7.3.1611 (Core)
如果要设置全局代理,则
#vi /etc/profile export http_proxy=http://192.168.1.188:3128/ export ftp_proxy=http://192.168.1.188:3128/
以上所述是小编给大家介绍的CectOS7设置代理更新阿里云yum,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程宝库网站的支持!
如果对PHP没有要求建议全部用yum 一键安装,纯属个人经验,主要作用是用来参考的。yum install httpd #yum 安装Apache。php编译安装安装前记得安装php依赖环境 ...