"The given endpoint is not suitable to activate standalone FS mode",
"Invalid endpoint for standalone FS mode",
"Please check the given FS endpoint",
"Please check the FS endpoint",
`FSmoderequiresonlyonewritablediskpath.
`FSmoderequiresonlyonewritablediskpath.
Example1:
Example1:
$minioserver/data/minio/`,
$minioserver/data/minio/`,
@ -98,24 +98,24 @@ Example 1:
uiErrUnableToWriteInBackend=newUIErrFn(
uiErrUnableToWriteInBackend=newUIErrFn(
"Unable to write to the backend",
"Unable to write to the backend",
"Please ensure that Minio binary has write permissions to the backend",
"Please ensure Minio binary has write permissions for the backend",
"",
"",
)
)
uiErrUnableToReadFromBackend=newUIErrFn(
uiErrUnableToReadFromBackend=newUIErrFn(
"Unable to read from the backend",
"Unable to read from the backend",
"Please ensure that Minio binary has read permission from the backend",
"Please ensure Minio binary has read permissions for the backend",
"",
"",
)
)
uiErrPortAlreadyInUse=newUIErrFn(
uiErrPortAlreadyInUse=newUIErrFn(
"Port is already in use",
"Port is already in use",
"Please ensure no other program is using the same address/port",
"Please ensure no other program uses the same address/port",
"",
"",
)
)
uiErrNoPermissionsToAccessDirFiles=newUIErrFn(
uiErrNoPermissionsToAccessDirFiles=newUIErrFn(
"Missing permissions to access to the specified path",
"Missing permissions to access the specified path",
"Please ensure the specified path can be accessed",
"Please ensure the specified path can be accessed",
"",
"",
)
)
@ -127,44 +127,44 @@ Example 1:
)
)
uiErrSSLUnexpectedData=newUIErrFn(
uiErrSSLUnexpectedData=newUIErrFn(
"Something is wrong with your TLS certificate",
"Invalid TLS certificate",
"Please check your certificate",
"Please check your certificate",
"",
"",
)
)
uiErrSSLNoPassword=newUIErrFn(
uiErrSSLNoPassword=newUIErrFn(
"no password was specified",
"Missing TLS password",
"Please set the password to this environment variable `"+TLSPrivateKeyPassword+"` so the private key can be decrypted",
"Please set the password to environment variable `"+TLSPrivateKeyPassword+"` so that the private key can be decrypted",
"",
"",
)
)
uiErrNoCertsAndHTTPSEndpoints=newUIErrFn(
uiErrNoCertsAndHTTPSEndpoints=newUIErrFn(
"HTTPS is specified in endpoint URLs but no TLS certificate is found on the local machine",
"HTTPS specified in endpoints, but no TLS certificate is found on the local machine",
"Please add a certificate or switch to HTTP.",
"Please add a certificate or switch to HTTP.",
"Refer to https://docs.minio.io/docs/how-to-secure-access-to-minio-server-with-tls for information about how to load a TLS certificate in th server.",
"Refer to https://docs.minio.io/docs/how-to-secure-access-to-minio-server-with-tls for information about how to load a TLS certificate in your server.",
)
)
uiErrCertsAndHTTPEndpoints=newUIErrFn(
uiErrCertsAndHTTPEndpoints=newUIErrFn(
"HTTP is specified in endpoint URLs but the server in the local machine is configured with a TLS certificate",
"HTTP specified in endpoints, but the server in the local machine is configured with a TLS certificate",
"Please remove the certificate in the configuration directory or switch to HTTPS",
"Please remove the certificate in the configuration directory or switch to HTTPS",
"",
"",
)
)
uiErrSSLWrongPassword=newUIErrFn(
uiErrSSLWrongPassword=newUIErrFn(
"Unable to decrypt the private key using the provided password",
"Unable to decrypt the private key using the provided password",
"Please set the correct password in "+TLSPrivateKeyPassword,
"Please set the correct password in environment variable "+TLSPrivateKeyPassword,