…cript for xfs settings to Linux" Closes #1084 Accomplishing a few things here: 1. General tidy-up of the installation pages so Windows/Container/MacOS only display the appropriate deployment topos 2. Better admonitions/guidance on when to use what distribution 3. Added a section on Storage + XFS Settings to resolve an ongoing customer request --------- Co-authored-by: Daryl White <53910321+djwfyi@users.noreply.github.com> Co-authored-by: Andrea Longo <feorlen@users.noreply.github.com>
1.9 KiB
1) Download the MinIO Server
Download the MinIO executable from the following URL:
https://dl.min.io/server/minio/release/windows-amd64/minio.exe
The next step includes instructions for running the executable. You cannot run the executable from the Explorer or by double clicking the file. Instead, you call the executable to launch the server.
2) Prepare the Data Path for MinIO
Ensure the data path is empty and contains no existing files, including any hidden or Windows system files.
If specifying a drive not dedicated for use by MinIO, consider
creating a dedicated folder for storing MinIO data such as
D:/Minio
.
3) Start the MinIO Server
Open the Command Prompt or PowerShell and issue the following command to start the MinIO deployment in that session:
minio.exe server D:/minio --console-address ":9001"
The output should resemble the following:
Status: 1 Online, 0 Offline.
API: http://192.168.2.100:9000 http://127.0.0.1:9000
Console: http://192.168.2.100:9001 http://127.0.0.1:9001
Command-line: https://min.io/docs/minio/linux/reference/minio-mc.html
$ mc alias set myminio http://10.0.2.100:9000 minioadmin minioadmin
Documentation: https://min.io/docs/minio/linux/index.html
The API
block lists the network interfaces and port on
which clients can access the MinIO S3 API. The Console
block lists the network interfaces and port on which clients can access
the MinIO Web Console.