1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Maven】ミラーサーバからMaven3.6.3がダウンロードできなくなった件について

Last updated at Posted at 2023-06-12

ミラーサーバ(Mirror Server)とは

インターネット上でデータやソフトウェアのコピーを提供するためのサーバ。
元のデータやソフトウェアを保持している「オリジナルサーバ」と連携して動作する。
(勝手に「オリジナルサーバ」って呼んでるけど、正式名称はわからない...😇)

今回の事象

2023-06-09 10:13(JST)にミラーサーバからMaven3.6.3が削除されたことで、ミラーサーバからバージョン3.6.3をダウンロードできなくなった。

正確に言うと...
オリジナルサーバからMaven3.6.3が削除され、それと連携してミラーサーバからもMaven3.6.3が消えた。

以下のサイトからも、2023-06-09時点でバージョン3.6.3のダウンロード情報が消えていた。
https://maven.apache.org/download.cgi

Maven3.6.3をダウンロードする方法

以下にバージョン3.6.3がアーカイブされているから大丈夫😉
https://archive.apache.org/dist/maven/maven-3/

なんなら、ミラーサーバからダウンロードできる3.8.83.9.2もアーカイブからダウンロード可能。
オリジナルサーバから削除されるタイミングでアーカイブされるものかと思ってた)

DockerfileでMaven3.6.3をダウンロードしている場合

DockerfileでMaven3.6.3をミラーサーバからダウンロードするようになっている場合、
デプロイされてもMavenがダウンロードできないため、コンテナは起動しない......

対策としては、以下のようなものが考えられる

  1. ダウンロード先をアーカイブにする
  2. S3などのストレージサービスにダウンロードしてきて、それをダウンロード先にする
  3. ミラーサーバからダウンロードできない場合に、アーカイブからダウンロードするようにする(3.8.8や3.9.2の場合)
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?