0

ソースから私のgitlabインストールをセットアップし、letsencryptで安全にしてhttps://gitlab.mydomain.comの下に配備しました。私はウェブサイトにアクセスしてリポジトリを作成することができますが、インストールのためにgitlab ciランナーを登録する方法が見つかりません。Gitlab CI - ランナーの登録に失敗しました

Please enter the gitlab-ci coordinator URL (e.g. https://gitlab.com/ci): 
https://gitlab.mydomain.com/ci 
Please enter the gitlab-ci token for this runner: 
xxxxxxxx-xxxxxxxx 
Please enter the gitlab-ci description for this runner: 
[server]: test 
Please enter the gitlab-ci tags for this runner (comma separated): 
test 
ERROR: Registering runner... failed  runner=xxxxxxx 
status=couldn't execute POST against https://gitlab.mydomain.com/ci/api/v1/runners/register.json: 
Post https://gitlab.mydomain.com/ci/api/v1/runners/register.json: 
read tcp [ipv6address]:33518->[ipv6address]:443: read: connection reset by peer 
PANIC: Failed to register this runner. Perhaps you are having network problems 

マイgitlabシステムが正常に動作していると私は本当にconnection reset by peerがあるだろう理由の説明が不足しています。エラーメッセージから直接アドレスをカールしようとすると、正しい応答が返されます。

curl -v https://gitlab.mydomain.com/ci/api/v1/runners/register.json 
* Trying ipv6address... 
* Connected to gitlab.mydomain.com (ipv6address) port 443 (#0) 
* found 174 certificates in /etc/ssl/certs/ca-certificates.crt 
* found 700 certificates in /etc/ssl/certs 
* ALPN, offering h2 
* ALPN, offering http/1.1 
* SSL connection using TLS1.2/ECDHE_RSA_AES_256_GCM_SHA384 
*  server certificate verification OK 
*  server certificate status verification SKIPPED 
*  common name: mydomain.com (matched) 
*  server certificate expiration date OK 
*  server certificate activation date OK 
*  certificate public key: RSA 
*  certificate version: #3 
*  subject: CN=mydomain.com 
*  start date: Wed, 18 May 2016 14:35:00 GMT 
*  expire date: Tue, 16 Aug 2016 14:35:00 GMT 
*   issuer: C=US,O=Let's Encrypt,CN=Let's Encrypt Authority X3 
*  compression: NULL 
* ALPN, server did not agree to a protocol 
> GET /ci/api/v1/runners/register.json HTTP/1.1 
> Host: gitlab.mydomain.com 
> User-Agent: curl/7.47.0 
> Accept: */* 
> 
< HTTP/1.1 405 Method Not Allowed 
< Server: nginx 
< Date: Sun, 29 May 2016 09:14:09 GMT 
< Content-Type: application/json 
< Content-Length: 2 
< Connection: keep-alive 
< Allow: OPTIONS, POST 
< Cache-Control: no-cache 
< Status: 405 Method Not Allowed 
+0

あなたがランナーの設定を投稿できる:ポストの問題で同じ

ソリューションは、CI-ランナーの古いバージョンをインストールしましたか? –

+0

@HuiWang - 'concurrent = 1'という1行しかありません。これは、上記のエラーで設定を作成するプロセスが失敗するためと思われます。 – Jonas

+0

このリンクをご覧くださいhttps://gitlab.com/wiget/gitlab-ci-multi-runner/blob/master/docs/configuration/tls-self-signed.md –

答えて

0

問題は、最新のバージョンに8.8.3gitlab-multi-ci-runnerにgitlabを更新した後、去っていきました。

また、gitlab nginx設定ファイルを最初から起動しました。

最後に、どの変更が問題を正確に解決したかはわかりません。

関連する問題