Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doc] Forbid https in endpoint address (backport #52279) #52280

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ StarRocks 访问存储系统的认证配置。
| ---------------------- | ------------------------------------------------------------ |
| fs.oss.accessKeyId | 访问阿里云 OSS 存储空间的 AccessKey ID,用于标识用户。 |
| fs.oss.accessKeySecret | 访问阿里云 OSS 存储空间的 AccessKey Secret,是用于加密签名字符串和 OSS 用来验证签名字符串的密钥。 |
| fs.oss.endpoint | 访问阿里云 OSS 存储空间的连接地址。 |
| fs.oss.endpoint | 访问阿里云 OSS 存储空间的连接地址。<br />**注意**<br />请勿在端点地址中指定 `https`。 |

请参见阿里云官方文档[用户签名验证](https://help.aliyun.com/document_detail/31950.html)。

Expand All @@ -425,7 +425,7 @@ StarRocks 访问存储系统的认证配置。
| ------------------------------ | ------------------------------------------------------------ |
| fs.cosn.userinfo.secretId | 访问腾讯云 COS 存储空间的 SecretId,用于标识 API 调用者的身份。 |
| fs.cosn.userinfo.secretKey | 访问腾讯云 COS 存储空间的 SecretKey,是用于加密签名字符串和服务端验证签名字符串的密钥。 |
| fs.cosn.bucket.endpoint_suffix | 访问腾讯云 COS 存储空间的连接地址。 |
| fs.cosn.bucket.endpoint_suffix | 访问腾讯云 COS 存储空间的连接地址。<br />**注意**<br />请勿在端点地址中指定 `https`。 |

请参见腾讯云官方文档[使用永久密钥访问 COS](https://cloud.tencent.com/document/product/436/68282)。

Expand All @@ -445,7 +445,7 @@ StarRocks 访问存储系统的认证配置。
| ---------------------- | ------------------------------------------------------------ |
| fs.obs.access.key | 访问华为云 OBS 存储空间的 Access Key ID,与私有访问密钥关联的唯一标识符。|
| fs.obs.secret.key | 访问华为云 OBS 存储空间的 Secret Access Key,对请求进行加密签名,可标识发送方,并防止请求被修改。 |
| fs.obs.endpoint | 访问华为云 OBS 存储空间的连接地址。 |
| fs.obs.endpoint | 访问华为云 OBS 存储空间的连接地址。<br />**注意**<br />请勿在端点地址中指定 `https`。 |

请参见华为云官方文档[通过永久访问密钥访问 OBS](https://support.huaweicloud.com/perms-cfg-obs/obs_40_0007.html)。

Expand Down
Loading