2016-06-27 67 views
1

私はGitLabとCentOSの初心者です。 私は公式のリンクの下に使用してCentOSの6.5にGitLabをインストールしようとしています:ステップの下に実行している間 https://about.gitlab.com/downloads/#centos6CentOS 6.5にGitLabをインストールする:Curlエラー

を:

curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash

私は次のエラーを取得しています:

Detected operating system as centos/6. 
Checking for curl... 
Detected curl... 
Downloading repository file: https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/config_file.repo?os=centos&dist=6&source=script 
curl: (6) Couldn't resolve host 'packages.gitlab.com' 

Unable to run: 
    curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/config_file.repo?os=centos&dist=6&source=script 

Double check your curl installation and try again. 

私はまた、プロキシ設定でcurlコマンドを試しても、同じエラーが発生しました。 ご迷惑をおかけして申し訳ありません。 CentOSの上GitLabをインストール中

+0

回避策は、パッケージをダウンロードしてインストールすることです。そのbashスクリプトはオペレーティングシステムを特定してから、適切なパッケージをダウンロードしてインストールします。あなたが望むなら、確かにこれを自分で行うことができます。 –

答えて

0

私は2つの問題に直面していた。

1)プロキシはを発行します。エラーメッセージが読ま:

Couldn't resolve host 'packages.gitlab.com'

export https_proxy=username:[email protected]:port
以下のように私のセットアップHTTPSプロキシを

2)ルート権限の問題:私はGitLabをnon-rooでインストールしていたtユーザとGitLabはrootユーザの所有権を持つ/etc/repos.dの下にパッケージをインストールしていたが、インストールは失敗した。それゆえ、私はrootを目の当たりにしてそれをインストールしました。

ありがとうございます!

関連する問題