mirror of
https://github.com/minio/docs.git
synced 2025-07-28 19:42:10 +03:00
Updates for minio Dec 2022 releases (#701)
Two releases for MinIO in December 2022 and Jan 2023 affected the docs. Updates for Dec 2022 minio updates - Adds 500,000 as the recommended but not hard limit to number of buckets - Adds info on encrypting list of file names in zip archives Closes #684 Updates for Jan 2 2023 release - Adds info about setting server to listen on multiple IP addresses - Updates list of available metrics Closes #689
This commit is contained in:
@ -163,6 +163,12 @@ The new bucket enables :ref:`object versioning <minio-bucket-versioning>` for al
|
||||
Behavior
|
||||
--------
|
||||
|
||||
Bucket Limits Per Deployment
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
MinIO does not limit the number of buckets you can create on a deployment.
|
||||
However, MinIO recommends no more than 500,000 buckets per deployment as a general guideline.
|
||||
|
||||
Bucket Limits for Non-MinIO S3 Services
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
|
@ -22,6 +22,10 @@ MinIO assembles this data from each backend drive storing an :ref:`erasure shard
|
||||
|
||||
The command produces an encrypted zip file that includes all matching files with their respective *host+drive+path*.
|
||||
|
||||
.. versionchanged:: RELEASE.2022-12-12T19-27-27Z
|
||||
|
||||
When writing the zip archive, MinIO also encrypts the zip index of file names included in the archive.
|
||||
|
||||
The resulting report is intended for use by MinIO Engineering via |SUBNET| and may contain internal or private data points associated to the object.
|
||||
Exercise caution before sending a report to a third party or posting the report in a public forum.
|
||||
|
||||
|
@ -94,6 +94,7 @@ The command accepts the following arguments:
|
||||
information on Server Pools, see :ref:`Server Pool <minio-intro-server-pool>`.
|
||||
|
||||
.. mc-cmd:: DIRECTORIES
|
||||
:required:
|
||||
|
||||
The directories or drives the :mc:`minio server` process uses as the
|
||||
storage backend.
|
||||
@ -132,9 +133,9 @@ The command accepts the following arguments:
|
||||
|
||||
|
||||
.. mc-cmd:: --address
|
||||
|
||||
:optional:
|
||||
|
||||
*Optional* Binds the :mc:`minio <minio server>` server process to a
|
||||
Binds the :mc:`minio <minio server>` server process to a
|
||||
specific network address and port number. Specify the address and port as
|
||||
``ADDRESS:PORT``, where ``ADDRESS`` is an IP address or hostname and
|
||||
``PORT`` is a valid and open port on the host system.
|
||||
@ -143,13 +144,27 @@ The command accepts the following arguments:
|
||||
on the host machine, specify ``:PORT`` where ``PORT`` is a valid
|
||||
and open port on the host.
|
||||
|
||||
.. versionchanged:: RELEASE.2023-01-02T09-40-09Z
|
||||
|
||||
You can configure your hosts file to have MinIO only listen on specific IPs.
|
||||
For example, if the machine's `/etc/hosts` file contains the following:
|
||||
|
||||
.. code-block:: shell
|
||||
|
||||
127.0.1.1 minioip
|
||||
127.0.1.2 minioip
|
||||
|
||||
A command like the following would listen for API calls on port ``9000`` on both configured IP addresses.
|
||||
|
||||
.. code-block:: shell
|
||||
|
||||
minio server --address "minioip:9000" ~/miniodirectory
|
||||
|
||||
If omitted, :mc:`minio <minio server>` binds to port ``9000`` on all
|
||||
configured IP addresses or hostnames on the host machine.
|
||||
|
||||
.. mc-cmd:: --console-address
|
||||
|
||||
|
||||
*Optional*
|
||||
:optional:
|
||||
|
||||
Specifies a static port for the embedded MinIO Console.
|
||||
|
||||
@ -157,9 +172,9 @@ The command accepts the following arguments:
|
||||
MinIO server outputs the port to the system log.
|
||||
|
||||
.. mc-cmd:: --certs-dir, -S
|
||||
|
||||
:optional:
|
||||
|
||||
*Optional* Specifies the path to the folder containing certificates the
|
||||
Specifies the path to the folder containing certificates the
|
||||
:mc:`minio` process uses for configuring TLS/SSL connectivity.
|
||||
|
||||
Omit to use the default directory paths:
|
||||
@ -170,20 +185,19 @@ The command accepts the following arguments:
|
||||
See :ref:`minio-TLS` for more information on TLS/SSL connectivity.
|
||||
|
||||
.. mc-cmd:: --quiet
|
||||
|
||||
:optional:
|
||||
|
||||
*Optional* Disables startup information.
|
||||
Disables startup information.
|
||||
|
||||
.. mc-cmd:: --anonymous
|
||||
|
||||
:optional:
|
||||
|
||||
*Optional* Hides sensitive information from logging.
|
||||
Hides sensitive information from logging.
|
||||
|
||||
.. mc-cmd:: --json
|
||||
|
||||
:optional:
|
||||
|
||||
*Optional* Outputs server logs and startup information in ``JSON``
|
||||
format.
|
||||
Outputs server logs and startup information in ``JSON`` format.
|
||||
|
||||
.. _minio-server-environment-variables:
|
||||
|
||||
|
Reference in New Issue
Block a user