1
0
mirror of https://github.com/minio/docs.git synced 2025-07-30 07:03:26 +03:00

DOCS-845: Updates for MinIO Server RELEASE.2023-05-04T21-44-30Z (#852)

Closes #845 

Staged: http://192.241.195.202:9000/staging/DOCS-845/linux/index.html
This commit is contained in:
Ravind Kumar
2023-05-17 17:38:27 -04:00
committed by GitHub
parent 9f95069315
commit 79e55b4d90
8 changed files with 102 additions and 14 deletions

View File

@ -2,7 +2,7 @@ replicate:
apiVersion: v1
# source of the objects to be replicated
source:
type: TYPE # valid values are "s3"
type: TYPE # valid values are "s3" or "minio"
bucket: BUCKET
prefix: PREFIX
# endpoint: ENDPOINT
@ -13,7 +13,7 @@ replicate:
# target where the objects must be replicated
target:
type: TYPE # valid values are "s3"
type: TYPE # valid values are "s3" or "minio"
bucket: BUCKET
prefix: PREFIX
# endpoint: ENDPOINT

View File

@ -1007,3 +1007,18 @@ Specify the maximum limit for undelivered messages. Defaults to ``100000``.
Specify a comment to associate with the Webhook configuration.
.. end-minio-notify-webhook-comment
.. Root API Access
.. start-minio-root-api-access
.. versionadded:: MinIO Server RELEASE.2023-05-04T21-44-30Z
Specify ``on`` to enable and ``off`` to disable the :ref:`root <minio-users-root>` user account.
Disabling the root service account also disables all service accounts associated with root, excluding those used by site replication.
Defaults to ``on``.
Ensure you have at least one other admin user, such as one with the :userpolicy:`consoleAdmin` policy, before disabling the root account.
If you do not have another admin user, disabling the root account locks administrative access to the deployment.
.. end-minio-root-api-access

View File

@ -233,6 +233,11 @@ file manually on all MinIO hosts:
ExecStartPre=/bin/bash -c "if [ -z \"${MINIO_VOLUMES}\" ]; then echo \"Variable MINIO_VOLUMES not set in /etc/default/minio\"; exit 1; fi"
ExecStart=/usr/local/bin/minio server $MINIO_OPTS $MINIO_VOLUMES
# MinIO RELEASE.2023-05-04T21-44-30Z adds support for Type=notify (https://www.freedesktop.org/software/systemd/man/systemd.service.html#Type=)
# This may improve systemctl setups where other services use `After=minio.server`
# Uncomment the line to enable the functionality
# Type=notify
# Let systemd restart this service always
Restart=always