0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

MINIOインストール方法(Ubuntu)

Posted at

MinIOバイナリのダウンロード:
wgetコマンドでMinIOの実行ファイルをダウンロードします。お使いのCPUアーキテクチャに合わせてコマンドを選んでください。

Intel/AMD (x86-64) の場合:

Bash

wget https://dl.min.io/server/minio/release/linux-amd64/minio
ARM64 (aarch64) の場合:

Bash

wget https://dl.min.io/server/minio/release/linux-arm64/minio
実行権限の付与:
ダウンロードしたファイルに実行権限を与えます。

Bash

chmod +x minio
MinIOサーバーの起動:
データを保存するディレクトリを作成し、MinIOサーバーを起動します。

Bash

mkdir ~/minio-data
./minio server ~/minio-data --console-address ":9001"
アクセス:
macOSの場合と同様に、Webブラウザで http://127.0.0.1:9001 にアクセスし、ターミナルに表示された認証情報でログインします。

サーバーの停止は Ctrl + C です。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?