mirror of
https://github.com/minio/docs.git
synced 2025-07-25 21:22:11 +03:00
This commit also generally cleans up the Installation docs and uses /includes/<platform>/steps-*.rst as a pattern for storing platform-specific tutorials within a single root URL. Finally, due to API rate limits, this commit adds some Makefile magic to allow skipping of sync'ing dependencies. Pass `make BUILD_DEPENDENCIES=FALSE <platform>` to skip building any deps and use what is already in the branch.
56 lines
2.0 KiB
ReStructuredText
56 lines
2.0 KiB
ReStructuredText
1) Download the MinIO Server
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
.. include:: /includes/linux/common-installation.rst
|
|
:start-after: start-install-minio-binary-desc
|
|
:end-before: end-install-minio-binary-desc
|
|
|
|
2) Create the ``systemd`` Service File
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
.. include:: /includes/linux/common-installation.rst
|
|
:start-after: start-install-minio-systemd-desc
|
|
:end-before: end-install-minio-systemd-desc
|
|
|
|
3) Create the Environment Variable File
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
.. include:: /includes/common/common-deploy.rst
|
|
:start-after: start-common-deploy-create-environment-file-multi-drive
|
|
:end-before: end-common-deploy-create-environment-file-multi-drive
|
|
|
|
4) Start the MinIO Service
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Issue the following command on the local host to start the MinIO |SNSD| deployment as a service:
|
|
|
|
.. include:: /includes/linux/common-installation.rst
|
|
:start-after: start-install-minio-start-service-desc
|
|
:end-before: end-install-minio-start-service-desc
|
|
|
|
The ``journalctl`` output should resemble the following:
|
|
|
|
.. code-block:: shell
|
|
|
|
Status: 1 Online, 0 Offline.
|
|
API: http://192.168.2.100:9000 http://127.0.0.1:9000
|
|
RootUser: myminioadmin
|
|
RootPass: minio-secret-key-change-me
|
|
Console: http://192.168.2.100:9090 http://127.0.0.1:9090
|
|
RootUser: myminioadmin
|
|
RootPass: minio-secret-key-change-me
|
|
|
|
Command-line: https://docs.min.io/docs/minio-client-quickstart-guide
|
|
$ mc alias set myminio http://10.0.2.100:9000 myminioadmin minio-secret-key-change-me
|
|
|
|
Documentation: https://docs.min.io
|
|
|
|
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.
|
|
|
|
5) Connect to the MinIO Service
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
.. include:: /includes/common/common-deploy.rst
|
|
:start-after: start-common-deploy-connect-to-minio-deployment
|
|
:end-before: end-common-deploy-connect-to-minio-deployment |