Blog / 阅读

Git服务器代理上网安装出现问题的几个解决办法。

by admin on 2014-05-15 16:01:14 in ,



1、gem安装出现下面错误


root@ubuntu:/home/git/gitlab# sudo gem install bundler --no-ri --no-rdoc
ERROR:  Could not find a valid gem 'bundler' (>= 0), here is why:
          Unable to download data from https://rubygems.org/ - Errno::ETIMEDOUT: Connection timed out - connect(2) (https://api.rubygems.org/latest_specs.4.8.gz)
解决办法:


sudo gem install --http-proxy http://代理服务器:端口 bundler --no-ri --no-rdoc


问题原因:内网是使用代理上网,需要设置gem使用代理




2、无法使用git获取项目,需要为git配置代理


解决办法:代理服务器为 http 代理


1.HTTP 协议配置(配置 ~/.gitconfig)
[html] view plaincopy
[http]  
proxy = http://10.22.0.4:8080  
3、apt-get 代理设置 


sudo apt-get -c ~/apt_proxy.conf 
配置文件的格式,如下: 
Acquire::http::proxy "http://your_proxy_adress1:端口号/"; 
Acquire::ftp::proxy "ftp://your_proxy_adress2:端口号/"; 
Acquire::https::proxy "https://your_proxy_adress3:端口号/"; 


4、fetch配置



写评论

相关文章

上一篇:cocos2dx win732位环境搭建(android)

下一篇:单路CPU性能排名

评论

写评论

* 必填.

分享

栏目

赞助商


热门文章

Tag 云