Replace Minio refs in docs with MinIO and links (#7494)
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
# Minio Logging Quickstart Guide [](https://slack.minio.io)
|
||||
This document explains how to configure Minio server to log to different logging targets.
|
||||
# MinIO Logging Quickstart Guide [](https://slack.min.io)
|
||||
This document explains how to configure MinIO server to log to different logging targets.
|
||||
|
||||
## Log Targets
|
||||
Minio supports currently two target types
|
||||
MinIO supports currently two target types
|
||||
|
||||
- console
|
||||
- http
|
||||
|
||||
### Console Target
|
||||
Console target logs to `/dev/stderr` and is enabled by default. To turn-off console logging you would have to update your Minio server configuration using `mc admin config set` command.
|
||||
Console target logs to `/dev/stderr` and is enabled by default. To turn-off console logging you would have to update your MinIO server configuration using `mc admin config set` command.
|
||||
|
||||
Assuming `mc` is already [configured](https://docs.minio.io/docs/minio-client-quickstart-guide.html)
|
||||
Assuming `mc` is already [configured](https://docs.min.io/docs/minio-client-quickstart-guide.html)
|
||||
```
|
||||
mc admin config get myminio/ > /tmp/config
|
||||
```
|
||||
@@ -32,9 +32,9 @@ mc admin restart myminio/
|
||||
```
|
||||
|
||||
### HTTP Target
|
||||
HTTP target logs to a generic HTTP endpoint in JSON format and is not enabled by default. To enable HTTP target logging you would have to update your Minio server configuration using `mc admin config set` command.
|
||||
HTTP target logs to a generic HTTP endpoint in JSON format and is not enabled by default. To enable HTTP target logging you would have to update your MinIO server configuration using `mc admin config set` command.
|
||||
|
||||
Assuming `mc` is already [configured](https://docs.minio.io/docs/minio-client-quickstart-guide.html)
|
||||
Assuming `mc` is already [configured](https://docs.min.io/docs/minio-client-quickstart-guide.html)
|
||||
```
|
||||
mc admin config get myminio/ > /tmp/config
|
||||
```
|
||||
@@ -61,13 +61,13 @@ mc admin config set myminio/ < /tmp/config
|
||||
mc admin restart myminio/
|
||||
```
|
||||
|
||||
Minio also honors environment variable for HTTP target logging as shown below, this setting will override the endpoint settings in the Minio server config.
|
||||
MinIO also honors environment variable for HTTP target logging as shown below, this setting will override the endpoint settings in the MinIO server config.
|
||||
```
|
||||
MINIO_LOGGER_HTTP_ENDPOINT=http://localhost:8080/minio/logs minio server /mnt/data
|
||||
```
|
||||
|
||||
## Audit Targets
|
||||
For audit logging Minio supports only HTTP target type for now. Audit logging is currently only available through environment variable.
|
||||
For audit logging MinIO supports only HTTP target type for now. Audit logging is currently only available through environment variable.
|
||||
```
|
||||
MINIO_AUDIT_LOGGER_HTTP_ENDPOINT=http://localhost:8080/minio/logs/audit minio server /mnt/data
|
||||
```
|
||||
@@ -87,7 +87,7 @@ Setting this environment variable automatically enables audit logging to the HTT
|
||||
},
|
||||
"remotehost": "127.0.0.1",
|
||||
"requestID": "156946C6C1E7842C",
|
||||
"userAgent": "Minio (linux; amd64) minio-go/v6.0.6",
|
||||
"userAgent": "MinIO (linux; amd64) minio-go/v6.0.6",
|
||||
"requestClaims": {
|
||||
"accessKey": "A1YABB5YPX3ZPL4227XJ",
|
||||
"aud": "PoEgXP6uVO45IsENRngDXj5Au5Ya",
|
||||
@@ -101,7 +101,7 @@ Setting this environment variable automatically enables audit logging to the HTT
|
||||
"Authorization": "AWS4-HMAC-SHA256 Credential=A1YABB5YPX3ZPL4227XJ/20181121/us-east-1/s3/aws4_request,SignedHeaders=host;x-amz-content-sha256;x-amz-date;x-amz-decoded-content-length;x-amz-security-token,Signature=689d9b8f67b5625ea2f0b8cbb3f777d8839a91d50aa81e6a5555f5a6360c1714",
|
||||
"Content-Length": "184",
|
||||
"Content-Type": "application/octet-stream",
|
||||
"User-Agent": "Minio (linux; amd64) minio-go/v6.0.6",
|
||||
"User-Agent": "MinIO (linux; amd64) minio-go/v6.0.6",
|
||||
"X-Amz-Content-Sha256": "STREAMING-AWS4-HMAC-SHA256-PAYLOAD",
|
||||
"X-Amz-Date": "20181121T231606Z",
|
||||
"X-Amz-Decoded-Content-Length": "12",
|
||||
@@ -112,7 +112,7 @@ Setting this environment variable automatically enables audit logging to the HTT
|
||||
"Content-Security-Policy": "block-all-mixed-content",
|
||||
"Content-Type": "application/xml",
|
||||
"Etag": "",
|
||||
"Server": "Minio/DEVELOPMENT.2018-11-21T23-15-06Z (linux; amd64)",
|
||||
"Server": "MinIO/DEVELOPMENT.2018-11-21T23-15-06Z (linux; amd64)",
|
||||
"Vary": "Origin",
|
||||
"X-Amz-Request-Id": "156946C6C1E7842C",
|
||||
"X-Minio-Deployment-Id": "1b3002bf-5005-4d9b-853e-64a05008ebb2",
|
||||
@@ -122,5 +122,5 @@ Setting this environment variable automatically enables audit logging to the HTT
|
||||
```
|
||||
|
||||
## Explore Further
|
||||
* [Minio Quickstart Guide](https://docs.minio.io/docs/minio-quickstart-guide)
|
||||
* [Configure Minio Server with TLS](https://docs.minio.io/docs/how-to-secure-access-to-minio-server-with-tls)
|
||||
* [MinIO Quickstart Guide](https://docs.min.io/docs/minio-quickstart-guide)
|
||||
* [Configure MinIO Server with TLS](https://docs.min.io/docs/how-to-secure-access-to-minio-server-with-tls)
|
||||
|
||||
Reference in New Issue
Block a user