"The given endpoint is not suitable to activate standalone FS mode",
"Please check the given FS endpoint",
"Invalid endpoint for standalone FS mode",
"Please check the FS endpoint",
`FSmoderequiresonlyonewritablediskpath.
Example1:
$minioserver/data/minio/`,
@ -98,24 +98,24 @@ Example 1:
uiErrUnableToWriteInBackend=newUIErrFn(
"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(
"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(
"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(
"Missing permissions to access to the specified path",
"Missing permissions to access the specified path",
"Please ensure the specified path can be accessed",
"",
)
@ -127,44 +127,44 @@ Example 1:
)
uiErrSSLUnexpectedData=newUIErrFn(
"Something is wrong with your TLS certificate",
"Invalid TLS certificate",
"Please check your certificate",
"",
)
uiErrSSLNoPassword=newUIErrFn(
"no password was specified",
"Please set the password to this environment variable `"+TLSPrivateKeyPassword+"` so the private key can be decrypted",
"Missing TLS password",
"Please set the password to environment variable `"+TLSPrivateKeyPassword+"` so that the private key can be decrypted",
"",
)
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.",
"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(
"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",
"",
)
uiErrSSLWrongPassword=newUIErrFn(
"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,