首页 > 代码库 > Git服务器代理上网安装出现问题的几个解决办法。
Git服务器代理上网安装出现问题的几个解决办法。
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)
[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:端口号/";