JetBrains Gateway download and start IDE failure

Failure cause by: Command "env LC_ALL=C curl -sIL 'https://download.jetbrains.com/idea/ideaIU-2021.3.2.tar.gz'" didn't finish in due time (10000 milliseconds)

 

I can't find any helpful suggestion, and I try 5 times in different time. Of course I tried to turn on the proxy,and my ping value is  400ms+-. I put the URL into Chrome and it can be downloaded to the file normally. When I copy command in line, I got a weird feedback ↓↓↓

 

$ env LC_ALL=C curl -sIL 'https://download.jetbrains.com/idea/ideaIU-2021.3.2.tar.gz'
HTTP/1.1 200 Connection established

HTTP/2 302
date: Thu, 17 Feb 2022 03:38:06 GMT
content-type: text/html
content-length: 138
location: https://download-cdn.jetbrains.com/idea/ideaIU-2021.3.2.tar.gz
server: nginx
strict-transport-security: max-age=31536000; includeSubdomains;
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1; mode=block;
x-geocountry: Japan
x-geocode: JP

HTTP/1.1 200 Connection established

HTTP/2 200
content-type: binary/octet-stream
content-length: 966106985
x-amz-replication-status: COMPLETED
last-modified: Fri, 28 Jan 2022 12:29:12 GMT
x-amz-version-id: RwLdBrBG1R8HlndAAW0M7Xhq5EO5Y7iH
accept-ranges: bytes
server: AmazonS3
date: Wed, 16 Feb 2022 07:11:55 GMT
etag: "02cb1112be05eb910291f77220eac0c3-116"
x-cache: Hit from cloudfront
via: 1.1 246b44c4747953e35657a81aebd7c7fa.cloudfront.net (CloudFront)
x-amz-cf-pop: HKG62-C2
x-amz-cf-id: ZsyffsW3yEy1n02frb_R9wXbpL0FJCCASB8wLgGlmRZOVewg_BmJ8w==
age: 73572

What can I do to keep going?For example some manual operate?

0
2 comments

You have not specified the output for curl. It would tell it if no "-s"(silent) option is set: 

curl -L https://download-cdn.jetbrains.com/idea/ideaIU-2021.3.2.tar.gz
Warning: Binary output can mess up your terminal. Use "--output -" to tell
Warning: curl to output it to your terminal anyway, or consider "--output
Warning: <FILE>" to save to a file.

 

The right command to use is either "wget", or "curl --output './idea.tar.gz' ": 

 

curl --output "./file.tar.gz" https://download-cdn.jetbrains.com/idea/ideaIU-2021.3.2.tar.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  921M  100  921M    0     0  31.7M      0  0:00:29  0:00:29 --:--:-- 34.4M
0

Thanks for u Konstantin Annikov. This is an internal error of Gateway procedure, I can't change anything.
But I explored a manual path, share with newbies who have the same problem.

In Gateway wizard page <Choose IDE and Project> IDE Version right, the small blue print [Other options...]
this option can upload manually downloaded files(ideaIU-2021.3.2.tar.gz) by yourself in Chrome.

The problem was resolved

0

Please sign in to leave a comment.