Install MinIO on Linux: Quick Guide
You can install Minio on a Linux system by following these steps:
- Download the Minio binary file:
You can use the curl command to download the Minio binary file, for example:
curl -O https://dl.min.io/server/minio/release/linux-amd64/minio
- Grant the execution permission:
After the download is complete, you will need to grant execution permission to the Minio binary file by using the following command:
chmod +x minio
- Start the Minio service:
To start the Minio service, use the following command:
./minio server /data
The directory /data is where Minio will store data, and it can be modified as needed.
- Accessing the Minio service:
Once the Minio service is started, you can access it through a browser by visiting http://localhost:9000 and logging in with the Access Key and Secret Key. - Setting up Minio service:
You can configure the parameters of the Minio service by modifying the ~/.minio/config.json file, such as changing the port number, storage directory, etc.
The above are the basic steps for installing Minio on a Linux system. Specific operations may vary slightly depending on the system and requirements. It is recommended to refer to the official Minio documentation for more detailed installation and configuration information.