Compare commits

..

15 Commits

Author SHA1 Message Date
71ea4df1c7 Generated description for every helper file 2026-04-09 10:00:21 +00:00
4e4d472221 rename workflow 2026-04-08 13:19:35 +00:00
8ea25ba1a2 Workflow for missing entries in json files 2026-04-08 13:11:12 +00:00
c59638f8c2 Rename workflow 2026-04-08 12:41:05 +00:00
ca8a03a437 Workflow for checking on duplicate titles in class.txt.json 2026-04-08 12:40:25 +00:00
cf38dbaabb better formatting 2026-04-02 12:55:01 +00:00
d42223ce64 remove debug 2026-04-02 12:43:14 +00:00
40454bfc1d Debugging stuff 2026-04-02 12:40:54 +00:00
25107e5284 add sample data 2026-04-02 12:21:14 +00:00
6283700aec Exception handling if there are no changed html files 2026-04-02 12:01:13 +00:00
dbb848c448 fix 2026-04-02 11:54:25 +00:00
93a47eef6a fix fetch 2026-04-02 11:50:45 +00:00
96eb58b771 Prechecks using Gitea Actions 2026-04-02 11:41:00 +00:00
88b6007443 rds_umn
Reviewed-by: Wagner, Fabian <fabian.wagner@t-systems.com>
Co-authored-by: wangdengke2 <wangdengke2@huawei.com>
Co-committed-by: wangdengke2 <wangdengke2@huawei.com>
2026-04-02 09:58:19 +00:00
8343d6fd15 revert #1578 UCS API initial update 20250523 version
Reviewed-by: Gergo-Bence Lorincz <a200452876@noreply.gitea.eco.tsi-dev.otc-service.com>
Co-authored-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-committed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
2026-03-31 14:21:44 +00:00
130 changed files with 1643 additions and 387 deletions

View File

@ -0,0 +1,81 @@
# .gitea/workflows/class-txt-check.yml
name: Docs Precheck - CLASS.TXT.json Check
on:
pull_request:
types: [opened, reopened, synchronize, edited]
permissions:
contents: read
pull-requests: write
jobs:
class-txt-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Get changed CLASS.TXT.json files
id: changed-files
run: |
BASE_SHA="${{ gitea.event.pull_request.base.sha }}"
changed=$(git diff --name-only ${BASE_SHA}...HEAD | grep -E 'CLASS\.TXT\.json$' | tr '\n' ' ' || true)
echo "files=$changed" >> $GITHUB_OUTPUT
echo "CHANGED_FILES=$changed" >> $GITHUB_ENV
echo "Changed CLASS.TXT.json files: $changed"
- name: Run duplicate title check
id: class-check
run: |
python3 .gitea/workflows/helpers/class-txt-check.py
- name: Comment on PR with violations
if: failure() && steps.class-check.outcome == 'failure'
env:
GITEA_SERVER_URL: ${{ gitea.server_url }}
REPO: ${{ gitea.repository }}
PR_NUMBER: ${{ gitea.event.pull_request.number }}
TOKEN: ${{ gitea.token }}
run: |
set -euo pipefail
# Ensure URL starts with http
if [[ ! "${GITEA_SERVER_URL}" =~ ^https?:// ]]; then
GITEA_SERVER_URL="http://${GITEA_SERVER_URL}"
echo "Added http:// prefix to URL"
fi
# Generate comment message
MSG=$(python3 .gitea/workflows/helpers/class-comment.py)
echo "$MSG"
# Extract body from JSON
BODY=$(echo "$MSG" | python3 -c "import sys, json; print(json.load(sys.stdin)['body'])")
# Build the full URL
FULL_URL="${GITEA_SERVER_URL}/api/v1/repos/${REPO}/issues/${PR_NUMBER}/comments"
echo "Posting comment to: ${FULL_URL}"
# Comment on PR
curl -sS -X POST \
-H "Authorization: token ${TOKEN}" \
-H "Content-Type: application/json" \
"${FULL_URL}" \
-d "$(echo "$BODY" | python3 -c "import sys, json; print(json.dumps({'body': sys.stdin.read()}))")"
- name: Final status
if: always()
run: |
if [ -f violations.json ]; then
echo "::error::CLASS.TXT.json check failed. See previous step for details."
exit 1
fi

View File

@ -0,0 +1,84 @@
# .gitea/workflows/docs-precheck.yml
name: Docs Precheck - Underscore Check
on:
pull_request:
types: [opened, reopened, synchronize, edited]
permissions:
contents: read
pull-requests: write
jobs:
docs-precheck:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: pip install beautifulsoup4 lxml
- name: Get changed HTML files
id: changed-files
run: |
BASE_SHA="${{ gitea.event.pull_request.base.sha }}"
changed=$(git diff --name-only ${BASE_SHA}...HEAD | grep -E '\.(html|htm)$' | tr '\n' ' ' || true)
echo "files=$changed" >> $GITHUB_OUTPUT
echo "CHANGED_FILES=$changed" >> $GITHUB_ENV
echo "Changed HTML files: $changed"
- name: Run underscore check
id: underscore-check
run: |
python3 .gitea/workflows/helpers/underscore-check.py
- name: Comment on PR with violations
if: failure() && steps.underscore-check.outcome == 'failure'
env:
GITEA_SERVER_URL: ${{ gitea.server_url }}
REPO: ${{ gitea.repository }}
PR_NUMBER: ${{ gitea.event.pull_request.number }}
TOKEN: ${{ gitea.token }}
run: |
set -euo pipefail
# Ensure URL starts with http
if [[ ! "${GITEA_SERVER_URL}" =~ ^https?:// ]]; then
GITEA_SERVER_URL="http://${GITEA_SERVER_URL}"
echo "Added http:// prefix to URL"
fi
# Generate comment message
MSG=$(python3 .gitea/workflows/helpers/underscore-comment.py)
echo "$MSG"
# Extract body from JSON
BODY=$(echo "$MSG" | python3 -c "import sys, json; print(json.load(sys.stdin)['body'])")
# Build the full URL
FULL_URL="${GITEA_SERVER_URL}/api/v1/repos/${REPO}/issues/${PR_NUMBER}/comments"
echo "Posting comment to: ${FULL_URL}"
# Comment on PR
curl -sS -X POST \
-H "Authorization: token ${TOKEN}" \
-H "Content-Type: application/json" \
"${FULL_URL}" \
-d "$(echo "$BODY" | python3 -c "import sys, json; print(json.dumps({'body': sys.stdin.read()}))")"
- name: Final status
if: always()
run: |
if [ -f violations.json ]; then
echo "::error::Underscore check failed. See previous step for details."
exit 1
fi

View File

@ -0,0 +1,71 @@
#!/usr/bin/env python3
"""
Generate PR comment for CLASS.TXT.json duplicate title violations.
This script reads violations.json (created by class-txt-check.py) and generates
a formatted markdown comment to be posted on the PR. The comment includes:
- File path where violations were found
- Parent document title and code
- The duplicate title
- Document codes that share the duplicate title
Usage:
Run after class-txt-check.py fails. Reads violations.json and outputs JSON
with 'body' field containing the markdown comment text.
"""
import json
import sys
def main():
try:
with open("violations.json", "r") as f:
violations = json.load(f)
except Exception:
violations = []
if not violations:
print(json.dumps({"body": "No violations to report"}))
sys.exit(0)
# Group violations by file
by_file = {}
for v in violations:
key = v["file"]
if key not in by_file:
by_file[key] = []
by_file[key].append(v)
# Build message
lines = [
"❌ **Duplicate title detected in CLASS.TXT.json**",
"",
"Found child documents with duplicate titles under the same parent:",
"",
]
for filepath, file_violations in by_file.items():
lines.append(f"**{filepath}:**")
for v in file_violations:
parent_code = v["parent_code"]
parent_title = v["parent_title"]
duplicate_title = v["duplicate_title"]
codes = v["codes"]
lines.append(f" - Parent: `{parent_title}` (code: `{parent_code}`)")
lines.append(f" Duplicate title: `{duplicate_title}`")
for code in codes:
lines.append(f" - Document code: `{code}`")
lines.append("")
lines.append(
"**Please ensure all child documents under the same parent have unique titles.**"
)
message = "\n".join(lines)
print(json.dumps({"body": message}))
if __name__ == "__main__":
main()

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,63 @@
#!/usr/bin/env python3
"""
Generate PR comment for metadata registration check violations.
This script reads violations.json (created by metadata-check.py) and generates
a formatted markdown comment to be posted on the PR. The comment includes:
- HTML file path that was added but not registered
- Which metadata files it's missing from (CLASS.TXT.json, ALL_META.TXT.json)
- Whether the metadata files don't exist or the file is simply missing from them
Usage:
Run after metadata-check.py fails. Reads violations.json and outputs JSON
with 'body' field containing the markdown comment text.
"""
import json
import sys
def main():
try:
with open("violations.json", "r") as f:
violations = json.load(f)
except Exception:
violations = []
if not violations:
print(json.dumps({"body": "No violations to report"}))
sys.exit(0)
# Build message
lines = [
"❌ **HTML file not registered in metadata**",
"",
"The following HTML files were added but are not properly registered in the metadata files:",
"",
]
for v in violations:
html_file = v["file"]
missing_from = v["missing_from"]
lines.append(f"**{html_file}**")
for missing in missing_from:
# Check if it's a "file not found" case
if "(file not found)" in missing:
lines.append(
f" ❌ Missing from: `{missing.split(' (')[0]}` (metadata file does not exist)"
)
else:
lines.append(f" ❌ Missing from: `{missing}`")
lines.append("")
lines.append(
"**Please add the new HTML files to both `CLASS.TXT.json` and `ALL_META.TXT.json` in the same directory.**"
)
message = "\n".join(lines)
print(json.dumps({"body": message}))
if __name__ == "__main__":
main()

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,68 @@
#!/usr/bin/env python3
"""
Generate PR comment for underscore check violations.
This script reads violations.json (created by underscore-check.py) and generates
a formatted markdown comment to be posted on the PR. The comment includes:
- File path where violations were found
- Line number of each violation
- The offending word (ending with underscore)
- Context showing where the violation appears in the HTML
Usage:
Run after underscore-check.py fails. Reads violations.json and outputs JSON
with 'body' field containing the markdown comment text.
"""
import json
import sys
def main():
try:
with open("violations.json", "r") as f:
violations = json.load(f)
except Exception:
violations = []
if not violations:
print(json.dumps({"body": "No violations to report"}))
sys.exit(0)
# Group violations by file
by_file = {}
for v in violations:
key = v["file"]
if key not in by_file:
by_file[key] = []
by_file[key].append(v)
# Build message
lines = [
"❌ **Underscore check failed**",
"",
"Found words ending with underscore (not followed by alphanumeric characters):",
"",
]
for filepath, file_violations in by_file.items():
lines.append(f"**{filepath}:**")
for v in file_violations:
word = v["word"]
line_num = v["line"]
context = v["context"]
# Escape markdown special chars in context
context = context.replace("`", "\\`")
lines.append(f" - Line {line_num}: `{word}` in context: `{context}`")
lines.append("")
lines.append(
"**Please fix these issues as soon as possible.** Words should not end with an underscore unless followed by alphanumeric characters (A-Za-z0-9)."
)
message = "\n".join(lines)
print(json.dumps({"body": message}))
if __name__ == "__main__":
main()

View File

@ -0,0 +1,81 @@
# .gitea/workflows/metadata-check.yml
name: Docs Precheck - Metadata Registration Check
on:
pull_request:
types: [opened, reopened, synchronize, edited]
permissions:
contents: read
pull-requests: write
jobs:
metadata-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Get added HTML files
id: added-files
run: |
BASE_SHA="${{ gitea.event.pull_request.base.sha }}"
added=$(git diff --name-status ${BASE_SHA}...HEAD | grep "^A" | awk '{print $2}' | grep -E '\.html$' | tr '\n' ' ' || true)
echo "files=$added" >> $GITHUB_OUTPUT
echo "ADDED_FILES=$added" >> $GITHUB_ENV
echo "Added HTML files: $added"
- name: Run metadata registration check
id: metadata-check
run: |
python3 .gitea/workflows/helpers/metadata-check.py
- name: Comment on PR with violations
if: failure() && steps.metadata-check.outcome == 'failure'
env:
GITEA_SERVER_URL: ${{ gitea.server_url }}
REPO: ${{ gitea.repository }}
PR_NUMBER: ${{ gitea.event.pull_request.number }}
TOKEN: ${{ gitea.token }}
run: |
set -euo pipefail
# Ensure URL starts with http
if [[ ! "${GITEA_SERVER_URL}" =~ ^https?:// ]]; then
GITEA_SERVER_URL="http://${GITEA_SERVER_URL}"
echo "Added http:// prefix to URL"
fi
# Generate comment message
MSG=$(python3 .gitea/workflows/helpers/metadata-comment.py)
echo "$MSG"
# Extract body from JSON
BODY=$(echo "$MSG" | python3 -c "import sys, json; print(json.load(sys.stdin)['body'])")
# Build the full URL
FULL_URL="${GITEA_SERVER_URL}/api/v1/repos/${REPO}/issues/${PR_NUMBER}/comments"
echo "Posting comment to: ${FULL_URL}"
# Comment on PR
curl -sS -X POST \
-H "Authorization: token ${TOKEN}" \
-H "Content-Type: application/json" \
"${FULL_URL}" \
-d "$(echo "$BODY" | python3 -c "import sys, json; print(json.dumps({'body': sys.stdin.read()}))")"
- name: Final status
if: always()
run: |
if [ -f violations.json ]; then
echo "::error::Metadata registration check failed. See previous step for details."
exit 1
fi

View File

@ -515,7 +515,7 @@
{
"desc":"Meaning: Request throttling policy.Scope of effect: Operation Object (2.0)/Operation Object (3.0)Example:",
"product_code":"apig",
"title":"x-apigateway-ratelimit",
"title":"x-apigateway-ratelimits",
"uri":"apig_03_0098.html",
"doc_type":"usermanual",
"p_code":"43",

View File

@ -0,0 +1,20 @@
<a name="apig_02_0001"></a><a name="apig_02_0001"></a>
<h1 class="topictitle1">Process Flow</h1>
<div id="body8662426"><p id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_p8060118">The following figure shows the process of exposing an API.</p>
<p id="apig_02_0001__en-us_topic_0000001128377382_p18543548134311"><span><img id="apig_02_0001__en-us_topic_0000001128377382_image14730133294617" src="en-us_image_0000001829896089.png"></span></p>
<ol id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_ol134712352910"><li id="apig_02_0001__en-us_topic_0000001128377382_li035223651911">Creating a Gateway<p id="apig_02_0001__en-us_topic_0000001128377382_p08351451237"><a name="apig_02_0001__en-us_topic_0000001128377382_li035223651911"></a><a name="en-us_topic_0000001128377382_li035223651911"></a><a href="apig_03_0037.html">Create a dedicated gateway.</a></p>
</li><li id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_li1934718315294"><a href="apig-ug-180307003.html">Creating an API Group</a><p id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_p52731551293">An API group facilitates management of APIs used for the same service. Create an API group and then create APIs.</p>
</li><li id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_li1239042116208"><a href="apig-ug-190419107.html">Binding a Domain Name</a><p id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_p1939022115203">Before making the API available for users to access, bind an independent domain name (custom domain name) to the group to which the API belongs. Then API callers can use these domain names to call the API.</p>
</li><li id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_li034715392911"><a href="apig_0080101678.html">Creating an API</a><p id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_p1396201052917">When creating an API, configure the frontend and backend request paths, parameters, and protocols.</p>
</li><li id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_li1447643191811"><a href="apig-ug-190419108.html">Debugging an API</a><p id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_p18728145518188">Debug the API to check whether it works normally.</p>
</li><li id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_li23471332910"><a href="apig-ug-180307004.html">(Optional) Creating an Environment</a><p id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_p10254142615218">An API can be called in different scenarios, such as the production environment (RELEASE) or other custom environments. RELEASE is the default environment defined in APIG.</p>
</li><li id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_li134733102913"><a href="apig-ug-180307005.html">Publishing an API</a><p id="apig_02_0001__en-us_topic_0000001128377382_en-us_topic_0080101676_p780511012155">Publish the API so that it can be called.</p>
</li></ol>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="apig-ug-180307001.html">Opening APIs</a></div>
</div>
</div>

View File

@ -41,7 +41,7 @@
</table>
</div>
</p></li><li id="apig_03_0006__en-us_topic_0000001221574215_en-us_topic_0103545823_li369614061512"><span>Click <strong id="apig_03_0006__en-us_topic_0000001221574215_en-us_topic_0103545823_b1151018810305">OK</strong>.</span><p><p id="apig_03_0006__en-us_topic_0000001221574215_en-us_topic_0103545823_p643617378212">If the domain name is no longer needed, click <strong id="apig_03_0006__en-us_topic_0000001221574215_en-us_topic_0103545823_b791211518302">Unbind Domain Name</strong> to unbind it from the API group.</p>
</p></li><li id="apig_03_0006__en-us_topic_0000001221574215_en-us_topic_0103545823_li93451675213"><span>(Optional) If the API group contains HTTPS APIs, bind an SSL certificate to the independent domain name.</span><p><ol type="a" id="apig_03_0006__en-us_topic_0000001221574215_ol1799111542324"><li id="apig_03_0006__en-us_topic_0000001221574215_li13991165415321">In the row that contains the domain name, click <strong id="apig_03_0006__en-us_topic_0000001221574215_b854515393379">Select SSL Certificate</strong>.</li></ol><ol type="a" start="2" id="apig_03_0006__en-us_topic_0000001221574215_ol2992145419328"><li id="apig_03_0006__en-us_topic_0000001221574215_li2992135493218">Select an SSL certificate and click <strong id="apig_03_0006__en-us_topic_0000001221574215_b13711142203720">OK</strong>.<ul id="apig_03_0006__en-us_topic_0000001221574215_ul867615616168"><li id="apig_03_0006__en-us_topic_0000001221574215_li20676175641611">If a CA certificate has been uploaded for the SSL certificate, you can enable client authentication (HTTPS two-way authentication). <strong id="apig_03_0006__en-us_topic_0000001221574215_b28742914013">Enabling or disabling client authentication will affect the existing services. Exercise caution when performing this operation.</strong></li><li id="apig_03_0006__en-us_topic_0000001221574215_li14676105617167">If no SSL certificate is available, click <strong id="apig_03_0006__en-us_topic_0000001221574215_b11101651114714">Create SSL Certificate</strong> to create one. For details, see <a href="apig_03_0055.html#apig_03_0055">SSL Certificates</a>.</li></ul>
</p></li><li id="apig_03_0006__en-us_topic_0000001221574215_en-us_topic_0103545823_li93451675213"><span>(Optional) If the API group contains HTTPS APIs, bind an SSL certificate to the independent domain name test_.</span><p><ol type="a" id="apig_03_0006__en-us_topic_0000001221574215_ol1799111542324"><li id="apig_03_0006__en-us_topic_0000001221574215_li13991165415321">In the row that contains the domain name, click <strong id="apig_03_0006__en-us_topic_0000001221574215_b854515393379">Select SSL Certificate</strong>.</li></ol><ol type="a" start="2" id="apig_03_0006__en-us_topic_0000001221574215_ol2992145419328"><li id="apig_03_0006__en-us_topic_0000001221574215_li2992135493218">Select an SSL certificate and click <strong id="apig_03_0006__en-us_topic_0000001221574215_b13711142203720">OK</strong>.<ul id="apig_03_0006__en-us_topic_0000001221574215_ul867615616168"><li id="apig_03_0006__en-us_topic_0000001221574215_li20676175641611">If a CA certificate has been uploaded for the SSL certificate, you can enable client authentication (HTTPS two-way authentication). <strong id="apig_03_0006__en-us_topic_0000001221574215_b28742914013">Enabling or disabling client authentication will affect the existing services. Exercise caution when performing this operation.</strong></li><li id="apig_03_0006__en-us_topic_0000001221574215_li14676105617167">If no SSL certificate is available, click <strong id="apig_03_0006__en-us_topic_0000001221574215_b11101651114714">Create SSL Certificate</strong> to create one. For details, see <a href="apig_03_0055.html#apig_03_0055">SSL Certificates</a>.</li></ul>
</li></ol>
</p></li></ol>
</div>

View File

@ -28,7 +28,7 @@
</li>
<li class="ulchildlink"><strong><a href="apig_03_0055.html">SSL Certificates</a></strong><br>
</li>
<li class="ulchildlink"><strong><a href="apig_03_0040.html">Load Balance Channels</a></strong><br>
<li class="ulchildlink test_policy test_"><strong><a href="apig_03_0040.html">Load Balance Channels</a></strong><br>
</li>
<li class="ulchildlink"><strong><a href="apig_03_0041.html">Managing Environments</a></strong><br>
</li>

View File

@ -47,7 +47,7 @@
</li></ul>
</p></li><li id="apig_03_0019__en-us_topic_0000001221774151_en-us_topic_0000001151883501_li19109142924410"><span>Click <strong id="apig_03_0019__en-us_topic_0000001221774151_b1275410503448">OK</strong>.</span><p><ul id="apig_03_0019__en-us_topic_0000001221774151_ul18334414115613"><li id="apig_03_0019__en-us_topic_0000001221774151_li133351014125618">To clone this policy, click <strong id="apig_03_0019__en-us_topic_0000001221774151_b995111582546">Clone</strong> in the <strong id="apig_03_0019__en-us_topic_0000001221774151_b204471192551">Operation</strong> column.<div class="note" id="apig_03_0019__en-us_topic_0000001221774151_note165441445125319"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><ul id="apig_03_0019__en-us_topic_0000001221774151_ul133541495612"><li id="apig_03_0019__en-us_topic_0000001221774151_li2335181412567">The name of a cloned policy cannot be the same as that of any existing policy.</li><li id="apig_03_0019__en-us_topic_0000001221774151_li1533581455617"><strong id="apig_03_0019__en-us_topic_0000001221774151_b033415153572">Request throttling</strong> and <strong id="apig_03_0019__en-us_topic_0000001221774151_b391031715576">signature key</strong> policies cannot be cloned.</li></ul>
</div></div>
</li><li id="apig_03_0019__en-us_topic_0000001221774151_li933561485617">After the policy is created, perform the operations described in <a href="#apig_03_0019__en-us_topic_0000001221774151_en-us_topic_0000001151883501_section020918935713">Binding the Policy to APIs</a> for the policy to take effect for the API.</li></ul>
</li><li id="apig_03_0019__en-us_topic_0000001221774151_li933561485617">After the policy is created, perform the operations described in test_policy <a href="#apig_03_0019__en-us_topic_0000001221774151_en-us_topic_0000001151883501_section020918935713">Binding the Policy to APIs</a> for the policy to take effect for the API.</li></ul>
</p></li></ol>
</div>
<div class="section" id="apig_03_0019__en-us_topic_0000001221774151_en-us_topic_0000001151883501_section020918935713"><a name="apig_03_0019__en-us_topic_0000001221774151_en-us_topic_0000001151883501_section020918935713"></a><a name="en-us_topic_0000001221774151_en-us_topic_0000001151883501_section020918935713"></a><h4 class="sectiontitle">Binding the Policy to APIs</h4><ol id="apig_03_0019__en-us_topic_0000001221774151_en-us_topic_0000001151883501_ol1356962619589"><li id="apig_03_0019__en-us_topic_0000001221774151_li53566433142"><span>Click a policy name to go to the policy details page.</span></li><li id="apig_03_0019__en-us_topic_0000001221774151_li1350414233155"><span>In the <strong id="apig_03_0019__en-us_topic_0000001221774151_b253612484616">APIs</strong> area, select an environment and click <strong id="apig_03_0019__en-us_topic_0000001221774151_b17559174011464">Select APIs</strong>.</span></li><li id="apig_03_0019__en-us_topic_0000001221774151_li1218216522159"><span>Select the API group, environment, and required APIs.</span></li><li id="apig_03_0019__en-us_topic_0000001221774151_li131891433203"><span>Click <strong id="apig_03_0019__en-us_topic_0000001221774151_b914315914475">OK</strong>.</span><p><ul id="apig_03_0019__en-us_topic_0000001221774151_ul514320193525"><li id="apig_03_0019__en-us_topic_0000001221774151_li16143111911526">If an API no longer needs this policy, click <strong id="apig_03_0019__en-us_topic_0000001221774151_b4321503488">Unbind</strong> in the row that contains the API.</li><li id="apig_03_0019__en-us_topic_0000001221774151_li191431319145211">If there are multiple APIs that no longer need this policy, select these APIs, and click <strong id="apig_03_0019__en-us_topic_0000001221774151_b11659101474819">Unbind</strong> above the API list. You can unbind a policy from a maximum of 1000 APIs at a time.</li></ul>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 609 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 579 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 B

View File

@ -39,7 +39,7 @@
<tr id="en-us_topic_add_read_replica__row12411434193817"><td class="cellrowborder" valign="top" width="17.669999999999998%" headers="mcps1.3.3.2.5.2.2.2.3.1.1 "><p id="en-us_topic_add_read_replica__p174213423812">Storage Type</p>
</td>
<td class="cellrowborder" valign="top" width="82.33%" headers="mcps1.3.3.2.5.2.2.2.3.1.2 "><p id="en-us_topic_add_read_replica__p33881249161918">Determines the DB instance read/write speed. The higher the maximum throughput is, the higher the DB instance read/write speed can be.</p>
<ul id="en-us_topic_add_read_replica__ul2388249181917"><li id="en-us_topic_add_read_replica__li1038974918192"><strong id="en-us_topic_add_read_replica__b1338954915194">Cloud SSD</strong>: cloud drives used to decouple storage from compute. The maximum throughput is 350 MB/s.</li><li id="en-us_topic_add_read_replica__li15389749101912"><strong id="en-us_topic_add_read_replica__b113894496197">Extreme SSD</strong>: uses 25GE network and RDMA technologies to provide you with up to 1,000 MB/s throughput per disk and sub-millisecond latency.</li></ul>
<ul id="en-us_topic_add_read_replica__ul2388249181917"><li id="en-us_topic_add_read_replica__li1038974918192"><strong id="en-us_topic_add_read_replica__b1338954915194">Cloud SSD</strong>: cloud drives used to decouple storage from compute. The maximum throughput is 350 MB/s.</li><li id="en-us_topic_add_read_replica__li15389749101912"><strong id="en-us_topic_add_read_replica__b113894496197">Extreme SSD</strong>: uses 25GE network and RDMA technologies to provide you with up to 1,000 MB/s throughput per disk and sub-millisecond latency.</li><li id="en-us_topic_add_read_replica__li89539591842"><strong id="en-us_topic_add_read_replica__b5120123168">Flexible SSD</strong>: decouples capacity from performance and allows for tailored IOPS and throughput for your business requirements. This storage type is ideal for mainstream interactive applications that require high performance and low latency.</li></ul>
</td>
</tr>
<tr id="en-us_topic_add_read_replica__row986226171118"><td class="cellrowborder" valign="top" width="17.669999999999998%" headers="mcps1.3.3.2.5.2.2.2.3.1.1 "><p id="en-us_topic_add_read_replica__p5363100191215">AZ</p>
@ -70,6 +70,18 @@
<p id="en-us_topic_add_read_replica__p29201516144816">By default, storage space of a read replica is the same as that of the primary DB instance.</p>
</td>
</tr>
<tr id="en-us_topic_add_read_replica__row35781941112"><td class="cellrowborder" valign="top" width="20%" headers="mcps1.3.3.2.5.2.3.2.3.1.1 "><p id="en-us_topic_add_read_replica__p957810411419">IOPS</p>
</td>
<td class="cellrowborder" valign="top" width="80%" headers="mcps1.3.3.2.5.2.3.2.3.1.2 "><p id="en-us_topic_add_read_replica__p1479043414912">This parameter is required when the storage type is <strong id="en-us_topic_add_read_replica__b59745445916">Flexible SSD</strong>.</p>
<p id="en-us_topic_add_read_replica__p164560229108">The value range is from 3000 to 128000. The IOPS is limited by the disk size and must be no greater than 500 times the disk capacity.</p>
</td>
</tr>
<tr id="en-us_topic_add_read_replica__row119831641519"><td class="cellrowborder" valign="top" width="20%" headers="mcps1.3.3.2.5.2.3.2.3.1.1 "><p id="en-us_topic_add_read_replica__p1398311411817">Throughput</p>
</td>
<td class="cellrowborder" valign="top" width="80%" headers="mcps1.3.3.2.5.2.3.2.3.1.2 "><p id="en-us_topic_add_read_replica__p33333381693">This parameter is required when the storage type is <strong id="en-us_topic_add_read_replica__b1080524813911">Flexible SSD</strong>.</p>
<p id="en-us_topic_add_read_replica__p2407414152616">The value ranges from 125 to 1000 (in MiB/s) and must also be no greater than the IOPS divided by 4.</p>
</td>
</tr>
<tr id="en-us_topic_add_read_replica__row1594852605117"><td class="cellrowborder" valign="top" width="20%" headers="mcps1.3.3.2.5.2.3.2.3.1.1 "><p id="en-us_topic_add_read_replica__p595744141914">Disk Encryption</p>
</td>
<td class="cellrowborder" valign="top" width="80%" headers="mcps1.3.3.2.5.2.3.2.3.1.2 "><p id="en-us_topic_add_read_replica__p124855615294">Enabling disk encryption enhances data security but reduces the database's read and write performance by 5%.</p>

View File

@ -56,7 +56,7 @@
</div></div>
</p></li></ol>
</div>
<div class="section" id="en-us_topic_connect_instance__en-us_topic_0154555358_en-us_topic_0153118658_section335618164205"><h4 class="sectiontitle">Using SSL to Connect to a DB Instance</h4><ol id="en-us_topic_connect_instance__en-us_topic_0154555358_en-us_topic_0153118658_ol9899222162618"><li id="en-us_topic_connect_instance__li17251143135117"><span>Log in to the management console.</span></li><li id="en-us_topic_connect_instance__li42514315519"><span>Click <span><img id="en-us_topic_connect_instance__rds_02_0008_image192529212293" src="en-us_image_0000001145051824.png"></span> in the upper left corner and select a region and a project.</span></li><li id="en-us_topic_connect_instance__li52544395118"><span>Click <strong id="en-us_topic_connect_instance__rds_02_0008_b653516366542">Service List</strong>. Under <strong id="en-us_topic_connect_instance__rds_02_0008_b1753663645417">Database</strong>, click <strong id="en-us_topic_connect_instance__rds_02_0008_b4536193645417">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="en-us_topic_connect_instance__en-us_topic_0154555358_li2033132135913"><span>On the <span class="uicontrol" id="en-us_topic_connect_instance__uicontrol78051637184115"><b>Instances</b></span> page, click the target DB instance. In the <strong id="en-us_topic_connect_instance__b187171743261">Basic Information</strong> area on the <strong id="en-us_topic_connect_instance__b175261916372">Overview</strong> page, click <strong id="en-us_topic_connect_instance__b79964467716">Download</strong> in the <strong id="en-us_topic_connect_instance__b19463123262315">SSL</strong> field to download the root certificate or certificate bundle.</span></li><li id="en-us_topic_connect_instance__li1199511101410"><span>Import the root certificate to the Linux OS on the <span id="en-us_topic_connect_instance__text142115244282">ECS</span>. For details, see <a href="rds_faq_0052.html">How Can I Import the Root Certificate to a Windows or Linux OS?</a></span><p><div class="note" id="en-us_topic_connect_instance__note0920161610366"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><ul id="en-us_topic_connect_instance__ul11920141603613"><li id="en-us_topic_connect_instance__li89205162367">Since April 2017, RDS has offered a new root certificate that has a 20-year validation period. The new certificate takes effect after DB instances are rebooted. Replace the old certificate before it expires to improve system security.<p id="en-us_topic_connect_instance__p3920151616360"><a name="en-us_topic_connect_instance__li89205162367"></a><a name="li89205162367"></a>For details, see section <a href="rds_faq_0051.html">How Can I Identify the Validity Period of an SSL Root Certificate?</a></p>
<div class="section" id="en-us_topic_connect_instance__en-us_topic_0154555358_en-us_topic_0153118658_section335618164205"><h4 class="sectiontitle">Using SSL to Connect to a DB Instance</h4><ol id="en-us_topic_connect_instance__en-us_topic_0154555358_en-us_topic_0153118658_ol9899222162618"><li id="en-us_topic_connect_instance__li17251143135117"><span>Log in to the management console.</span></li><li id="en-us_topic_connect_instance__li42514315519"><span>Click <span><img id="en-us_topic_connect_instance__rds_02_0008_image192529212293" src="en-us_image_0000001145051824.png"></span> in the upper left corner and select a region and a project.</span></li><li id="en-us_topic_connect_instance__li52544395118"><span>Click <strong id="en-us_topic_connect_instance__rds_02_0008_b653516366542">Service List</strong>. Under <strong id="en-us_topic_connect_instance__rds_02_0008_b1753663645417">Database</strong>, click <strong id="en-us_topic_connect_instance__rds_02_0008_b4536193645417">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="en-us_topic_connect_instance__en-us_topic_0154555358_li2033132135913"><span>On the <span class="uicontrol" id="en-us_topic_connect_instance__uicontrol78051637184115"><b>Instances</b></span> page, click the target DB instance. Click <strong id="en-us_topic_connect_instance__b79964467716">Download</strong> under <strong id="en-us_topic_connect_instance__b7321729184510">SSL</strong> to download the Certificate Download package, and extract the root certificate ca.pem and bundle ca-bundle.pem from the package.</span></li><li id="en-us_topic_connect_instance__li1199511101410"><span>Import the root certificate to the Linux OS on the <span id="en-us_topic_connect_instance__text142115244282">ECS</span>. For details, see <a href="rds_faq_0052.html">How Can I Import the Root Certificate to a Windows or Linux OS?</a></span><p><div class="note" id="en-us_topic_connect_instance__note0920161610366"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><ul id="en-us_topic_connect_instance__ul11920141603613"><li id="en-us_topic_connect_instance__li89205162367">Since April 2017, RDS has offered a new root certificate that has a 20-year validation period. The new certificate takes effect after DB instances are rebooted. Replace the old certificate before it expires to improve system security.<p id="en-us_topic_connect_instance__p3920151616360"><a name="en-us_topic_connect_instance__li89205162367"></a><a name="li89205162367"></a>For details, see section <a href="rds_faq_0051.html">How Can I Identify the Validity Period of an SSL Root Certificate?</a></p>
</li><li id="en-us_topic_connect_instance__li12920111614365">You can also download the certificate bundle, which contains both the new certificate provided since April 2017 and the old certificate.</li></ul>
</div></div>
</p></li><li id="en-us_topic_connect_instance__en-us_topic_0154555358_en-us_topic_0153118658_li47772152307"><span>Connect to an <span id="en-us_topic_connect_instance__text1343318589515">RDS</span> DB instance. The Linux OS is used as an example.</span><p><div class="p" id="en-us_topic_connect_instance__en-us_topic_0154555358_p934734613117"><strong id="en-us_topic_connect_instance__en-us_topic_0154555358_abecce5c0334a48b89ec244bae0261d8e">mysql -h </strong>&lt;<em id="en-us_topic_connect_instance__en-us_topic_0154555358_a7a6bd58865d945629cd5aaccec79ea15">host</em>&gt;<strong id="en-us_topic_connect_instance__en-us_topic_0154555358_a64fd5d6a27ac4cdca07557dfdc711ef6"> -P </strong><em id="en-us_topic_connect_instance__en-us_topic_0154555358_i996438155215">&lt;port&gt; </em><strong id="en-us_topic_connect_instance__en-us_topic_0154555358_a7f1f30f87b7e4833ad19d34bfd0b98a0">-u </strong>&lt;<em id="en-us_topic_connect_instance__en-us_topic_0154555358_aab7fc4200c8444ce84eb789f09d5400d">userName</em>&gt;<strong id="en-us_topic_connect_instance__en-us_topic_0154555358_a7a0c62367aea4c7788824ed1a72385eb"> -p </strong><strong id="en-us_topic_connect_instance__en-us_topic_0154555358_ac45fcb3543ad494ca048e37d2c18009b">--ssl-ca=</strong>&lt;<em id="en-us_topic_connect_instance__en-us_topic_0154555358_a1a7a070c17ed409bb27859594b226dc4">caDIR</em>&gt;

View File

@ -1,9 +1,9 @@
<a name="en-us_topic_scale_cluster"></a><a name="en-us_topic_scale_cluster"></a>
<h1 class="topictitle1">Scaling up Storage Space</h1>
<h1 class="topictitle1">Scaling Up Storage Space</h1>
<div id="body1471395156918"><div class="section" id="en-us_topic_scale_cluster__section3404387132643"><h4 class="sectiontitle">Scenarios</h4><p id="en-us_topic_scale_cluster__p18583743125018">If the original storage space is insufficient as your services grow, <span class="keyword" id="en-us_topic_scale_cluster__keyword12868112613102">scale up storage space</span> of your DB instance. </p>
<p id="en-us_topic_scale_cluster__p1980135514479">You are advised to set alarm rules for the storage space usage by referring to <a href="rds_06_0002.html">Setting Alarm Rules</a>.</p>
<p id="en-us_topic_scale_cluster__a9303b0396b0b4a60b481f52ba80cc9fd">RDS allows you to <span class="keyword" id="en-us_topic_scale_cluster__keyword5942164810274">scale up storage space</span> of DB instances but you cannot change the storage type. During the scale-up period, services are not interrupted.</p>
<p id="en-us_topic_scale_cluster__p17741546181713"><strong id="en-us_topic_scale_cluster__b98811773486">Services are not interrupted during storage scale-up.</strong>If you need to change the storage type, refer to <a href="rds_05_0140.html">Changing a Storage Type</a>.</p>
</div>
<div class="section" id="en-us_topic_scale_cluster__section18619499194"><h4 class="sectiontitle">Instance Becomes Read-Only When Storage Is Full</h4><p id="en-us_topic_scale_cluster__p169907655719">For details about the causes and solutions of insufficient storage space, see <a href="rds_faq_0046.html">What Should I Do If My Data Exceeds the Available Storage of an RDS DB Instance?</a></p>
@ -37,19 +37,19 @@
<div class="section" id="en-us_topic_scale_cluster__section6787733202313"><h4 class="sectiontitle">Constraints</h4><ul id="en-us_topic_scale_cluster__ul979225822314"><li id="en-us_topic_scale_cluster__li552515261357">The maximum allowed storage is 4,000 GB. There is no limit on the number of scale-ups.</li><li id="en-us_topic_scale_cluster__li67941558132319">The DB instance is in <strong id="en-us_topic_scale_cluster__b1222272173915">Scaling up</strong> state when its storage space is being scaled up and the backup services are not affected.</li><li id="en-us_topic_scale_cluster__li5794125810233">For primary/standby DB instances, scaling up the primary DB instance will cause the standby DB instance to also be scaled up accordingly.</li><li id="en-us_topic_scale_cluster__li147948588236">You cannot reboot or delete a DB instance that is being scaled up.</li><li id="en-us_topic_scale_cluster__li3794858162316">Storage space can only be scaled up, not down.</li><li id="en-us_topic_scale_cluster__li1179419586235">If you scale up a DB instance with disks encrypted, the expanded storage space will be encrypted using the original encryption key.</li></ul>
</div>
<div class="section" id="en-us_topic_scale_cluster__section3535102285710"><h4 class="sectiontitle">Scaling up a Primary DB Instance</h4><ol id="en-us_topic_scale_cluster__ol4816555385651"><li id="en-us_topic_scale_cluster__li17616348171"><span>Log in to the management console.</span></li><li id="en-us_topic_scale_cluster__li146168481712"><span>Click <span><img id="en-us_topic_scale_cluster__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="en-us_topic_scale_cluster__li96167481711"><span>Click <strong id="en-us_topic_scale_cluster__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="en-us_topic_scale_cluster__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="en-us_topic_scale_cluster__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="en-us_topic_scale_cluster__li683691813294"><span>On the <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol59770215612"><b>Instances</b></span> page, locate the target DB instance and choose <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol697982111611"><b>More</b></span> &gt; <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol19801211367"><b>Scale Storage Space</b></span> in the <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol2098110215613"><b>Operation</b></span> column.</span><p><p id="en-us_topic_scale_cluster__p31671032597">You can also perform the following operations to scale up storage space:</p>
<ul id="en-us_topic_scale_cluster__ul1779911333910"><li id="en-us_topic_scale_cluster__li157991331911">Click the target DB instance to enter the <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol199829114610398"><b>Overview</b></span> page. In the <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol8206143913235"><b>Storage &amp; Backup</b></span> area, click <strong id="en-us_topic_scale_cluster__b1651811381401">Scale Storage Space</strong>.</li></ul>
<ul id="en-us_topic_scale_cluster__ul1779911333910"><li id="en-us_topic_scale_cluster__li157991331911">Click the target DB instance to enter the <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol18378112617361"><b>Summary</b></span> page. In the <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol8206143913235"><b>Storage &amp; Backup</b></span> area, click <strong id="en-us_topic_scale_cluster__b1651811381401">Scale Storage Space</strong>.</li></ul>
</p></li><li id="en-us_topic_scale_cluster__lf939df2e325d47d490c6ffdacf5f0b19"><span>On the displayed page, specify the new storage space and click <strong id="en-us_topic_scale_cluster__b141936291142">Next</strong>.</span><p><p id="en-us_topic_scale_cluster__p1747816599218">The minimum increment for each scaling is 10 GB.</p>
</p></li><li id="en-us_topic_scale_cluster__lfe57f85e1f914c18a27135b833fe5532"><span>Confirm specifications.</span><p><ul id="en-us_topic_scale_cluster__ua113088d9aca48eb851347933c5477d7"><li id="en-us_topic_scale_cluster__l931174cebfd94b7cb373d721bc28a3b0">If you need to modify your settings, click <strong id="en-us_topic_scale_cluster__b84235270614124">Previous</strong>.</li><li id="en-us_topic_scale_cluster__li26523207131216">If you do not need to modify your settings, click <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol23094277711573"><b>Submit</b></span>.</li></ul>
</p></li><li id="en-us_topic_scale_cluster__li63124829102244"><span>View the scale-up result.</span><p><p id="en-us_topic_scale_cluster__p39906465377">Scaling up storage space takes 3-5 minutes. During the time period, the status of the DB instance on the <strong id="en-us_topic_scale_cluster__b1361971413419">Instances</strong> page will be <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol96201414848"><b>Scaling up</b></span>. Click the DB instance and view the utilization on the displayed <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol9125123374713"><b>Overview</b></span> page to verify that the scale-up is successful.</p>
</p></li><li id="en-us_topic_scale_cluster__li63124829102244"><span>View the scale-up result.</span><p><p id="en-us_topic_scale_cluster__p39906465377">Scaling up storage space takes 3-5 minutes. During the time period, the status of the DB instance on the <strong id="en-us_topic_scale_cluster__b1361971413419">Instances</strong> page will be <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol96201414848"><b>Scaling up</b></span>. Click the DB instance and view the utilization on the displayed <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol164609277360"><b>Summary</b></span> page to verify that the scale-up is successful.</p>
<p id="en-us_topic_scale_cluster__p43623947131217">If the DB instance is running the <span class="keyword" id="en-us_topic_scale_cluster__keyword113924200015">MySQL</span> DB engine, you can view the detailed progress and result of the task on the <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol2063919765152529"><b>Task Center</b></span> page. For details, see section <a href="rds_05_0007.html">Task Center</a>.</p>
</p></li></ol>
</div>
<div class="section" id="en-us_topic_scale_cluster__section25847103185530"><h4 class="sectiontitle">Scaling up a Read Replica</h4><p id="en-us_topic_scale_cluster__p12530131154810">Scaling up the storage space of a read replica does not affect that of the primary DB instance. Therefore, you can separately scale read replicas to meet service requirements. New storage space of read replicas after scaling up must be greater than or equal to that of the primary DB instance.</p>
<ol id="en-us_topic_scale_cluster__o8ff2596861e14d5ebd5092a2956bc4e5"><li id="en-us_topic_scale_cluster__li1642619113013"><span>Log in to the management console.</span></li><li id="en-us_topic_scale_cluster__li442101915302"><span>Click <span><img id="en-us_topic_scale_cluster__rds_modify_instance_name_en-us_topic_0192953815_image192529212293_1" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="en-us_topic_scale_cluster__li24211915305"><span>Click <strong id="en-us_topic_scale_cluster__rds_modify_instance_name_b171171523153019_1">Service List</strong>. Under <strong id="en-us_topic_scale_cluster__rds_modify_instance_name_b111722319302_1">Database</strong>, click <strong id="en-us_topic_scale_cluster__rds_modify_instance_name_b15118152363010_1">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="en-us_topic_scale_cluster__li466073618562"><span>On the <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol1799311348813"><b>Instances</b></span> page, locate the target DB instance and click <span><img id="en-us_topic_scale_cluster__image14169201820419" src="en-us_image_0000002459797326.png"></span> in front of it. Locate a read replica to be scaled and choose <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol139944341287"><b>More</b></span> &gt; <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol139947341789"><b>Scale Storage Space</b></span> in the <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol1399563420815"><b>Operation</b></span> column.</span><p><p id="en-us_topic_scale_cluster__p123552043142519">You can also perform the following operations to scale up storage space:</p>
<ul id="en-us_topic_scale_cluster__ul6355154342519"><li id="en-us_topic_scale_cluster__li1335514352514">Click the target DB instance to enter the <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol11311556144712"><b>Overview</b></span> page. In the <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol125323020274"><b>Storage &amp; Backup</b></span> area, click <strong id="en-us_topic_scale_cluster__b1554143022710">Scale Storage Space</strong>.</li></ul>
<ul id="en-us_topic_scale_cluster__ul6355154342519"><li id="en-us_topic_scale_cluster__li1335514352514">Click the target DB instance to enter the <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol2738142853614"><b>Summary</b></span> page. In the <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol125323020274"><b>Storage &amp; Backup</b></span> area, click <strong id="en-us_topic_scale_cluster__b1554143022710">Scale Storage Space</strong>.</li></ul>
</p></li><li id="en-us_topic_scale_cluster__lc3bba199e5334271abf23d5084307b79"><span>On the displayed page, specify the new storage space and click <strong id="en-us_topic_scale_cluster__b2771042658">Next</strong>.</span><p><p id="en-us_topic_scale_cluster__p059124562616">The minimum increment for each scaling is 10 GB.</p>
</p></li><li id="en-us_topic_scale_cluster__l502f9afc3a70472d8a410c2211d2c16a"><span>Confirm specifications.</span><p><ul id="en-us_topic_scale_cluster__u9a8965c4177d4087953f2ca1800a8fb3"><li id="en-us_topic_scale_cluster__lfdc9be1a0749498a945b90229e54b14d">If you need to modify your settings, click <strong id="en-us_topic_scale_cluster__b124746473">Previous</strong>.</li><li id="en-us_topic_scale_cluster__l24ffa63e5ea245618e438fb8a760837e">If you do not need to modify your settings, click <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol11893205154618"><b>Submit</b></span>.</li></ul>
</p></li><li id="en-us_topic_scale_cluster__li35572048102345"><span>View the scale-up result.</span><p><p id="en-us_topic_scale_cluster__en-us_topic_0086556947_p39906465377">Scaling up storage space takes 3-5 minutes. During the time period, the status of the read replica on the <strong id="en-us_topic_scale_cluster__b552981030171619">Instances</strong> page will be <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol1517153949922"><b>Scaling up</b></span>. Click the read replica and view the utilization on the displayed <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol6287192614816"><b>Overview</b></span> page to verify that the scale-up is successful.</p>
</p></li><li id="en-us_topic_scale_cluster__li35572048102345"><span>View the scale-up result.</span><p><p id="en-us_topic_scale_cluster__en-us_topic_0086556947_p39906465377">Scaling up storage space takes 3-5 minutes. During the time period, the status of the read replica on the <strong id="en-us_topic_scale_cluster__b552981030171619">Instances</strong> page will be <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol1517153949922"><b>Scaling up</b></span>. Click the read replica and view the utilization on the displayed <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol6521429153612"><b>Summary</b></span> page to verify that the scale-up is successful.</p>
<p id="en-us_topic_scale_cluster__adc832bd6f6654f998c5ad1c124c029cd">If the read replica is running the MySQL DB engine, you can view the detailed progress and result of the task on the <span class="uicontrol" id="en-us_topic_scale_cluster__uicontrol5676142818465"><b>Task Center</b></span> page. For details, see section <a href="rds_05_0007.html">Task Center</a>.</p>
</p></li></ol>
</div>

View File

@ -5,9 +5,9 @@
</div>
<div class="section" id="en-us_topic_scale_rds__section17604457192012"><a name="en-us_topic_scale_rds__section17604457192012"></a><a name="section17604457192012"></a><h4 class="sectiontitle">Constraints</h4><ul id="en-us_topic_scale_rds__ul166113117219"><li id="en-us_topic_scale_rds__li15611411112116">A DB instance cannot be deleted when its instance class is being changed.</li><li id="en-us_topic_scale_rds__li35651136112110">After you change instance classes, the DB instances will be rebooted and service will be interrupted. Therefore, you are advised to change instance classes during off-peak hours.</li></ul>
</div>
<div class="section" id="en-us_topic_scale_rds__section4298797218435"><h4 class="sectiontitle">Procedure</h4><ol id="en-us_topic_scale_rds__ol5947368818435"><li id="en-us_topic_scale_rds__li17616348171"><span>Log in to the management console.</span></li><li id="en-us_topic_scale_rds__li146168481712"><span>Click <span><img id="en-us_topic_scale_rds__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="en-us_topic_scale_rds__li96167481711"><span>Click <strong id="en-us_topic_scale_rds__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="en-us_topic_scale_rds__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="en-us_topic_scale_rds__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="en-us_topic_scale_rds__li45651852101719"><span>On the <span class="uicontrol" id="en-us_topic_scale_rds__uicontrol1223145619914"><b>Instances</b></span> page, locate the target DB instance and choose <span class="uicontrol" id="en-us_topic_scale_rds__uicontrol42324561915"><b>More</b></span> &gt; <span class="uicontrol" id="en-us_topic_scale_rds__uicontrol9233155612917"><b>Change Instance Class</b></span> in the <span class="uicontrol" id="en-us_topic_scale_rds__uicontrol192351956397"><b>Operation</b></span> column.</span><p><p id="en-us_topic_scale_rds__p38931353201717">Alternatively, click the target DB instance to go to the <span class="uicontrol" id="en-us_topic_scale_rds__uicontrol199829114610398"><b>Overview</b></span> page. Under <span class="uicontrol" id="en-us_topic_scale_rds__uicontrol1355913137453"><b>Instance Class</b></span>, click <strong id="en-us_topic_scale_rds__b227433244111">Configure</strong>.</p>
<div class="section" id="en-us_topic_scale_rds__section4298797218435"><h4 class="sectiontitle">Procedure</h4><ol id="en-us_topic_scale_rds__ol5947368818435"><li id="en-us_topic_scale_rds__li17616348171"><span>Log in to the management console.</span></li><li id="en-us_topic_scale_rds__li146168481712"><span>Click <span><img id="en-us_topic_scale_rds__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="en-us_topic_scale_rds__li96167481711"><span>Click <strong id="en-us_topic_scale_rds__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="en-us_topic_scale_rds__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="en-us_topic_scale_rds__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="en-us_topic_scale_rds__li45651852101719"><span>On the <span class="uicontrol" id="en-us_topic_scale_rds__uicontrol1223145619914"><b>Instances</b></span> page, locate the target DB instance and choose <span class="uicontrol" id="en-us_topic_scale_rds__uicontrol42324561915"><b>More</b></span> &gt; <span class="uicontrol" id="en-us_topic_scale_rds__uicontrol9233155612917"><b>Change Instance Class</b></span> in the <span class="uicontrol" id="en-us_topic_scale_rds__uicontrol192351956397"><b>Operation</b></span> column.</span><p><p id="en-us_topic_scale_rds__p38931353201717">Alternatively, click the target DB instance to go to the <span class="uicontrol" id="en-us_topic_scale_rds__uicontrol1632952433619"><b>Summary</b></span> page. Under <span class="uicontrol" id="en-us_topic_scale_rds__uicontrol1355913137453"><b>Instance Class</b></span>, click <strong id="en-us_topic_scale_rds__b227433244111">Configure</strong>.</p>
</p></li><li id="en-us_topic_scale_rds__lf939df2e325d47d490c6ffdacf5f0b19"><span>On the displayed page, specify the new instance class and click <span class="uicontrol" id="en-us_topic_scale_rds__en-us_topic_0134328161_uicontrol4647233914250"><b>Next</b></span>.</span><p><p id="en-us_topic_scale_rds__p12198177163318"></p>
</p></li><li id="en-us_topic_scale_rds__li984592715347"><span>View the DB instance class change result.</span><p><p id="en-us_topic_scale_rds__p187801454131614">Changing the DB instance class takes 515 minutes. During this period, the status of the DB instance on the <strong id="en-us_topic_scale_rds__b1968114225279">Instances</strong> page is <strong id="en-us_topic_scale_rds__b1231643118279">Changing instance class</strong>. After a few minutes, click the DB instance and view the instance class on the displayed <span class="uicontrol" id="en-us_topic_scale_rds__uicontrol7367144818432"><b>Overview</b></span> page to check that the change is successful.</p>
</p></li><li id="en-us_topic_scale_rds__li984592715347"><span>View the DB instance class change result.</span><p><p id="en-us_topic_scale_rds__p187801454131614">Changing the DB instance class takes 515 minutes. During this period, the status of the DB instance on the <strong id="en-us_topic_scale_rds__b1968114225279">Instances</strong> page is <strong id="en-us_topic_scale_rds__b1231643118279">Changing instance class</strong>. After a few minutes, click the DB instance and view the instance class on the displayed <span class="uicontrol" id="en-us_topic_scale_rds__uicontrol11442122514369"><b>Summary</b></span> page to check that the change is successful.</p>
<div class="notice" id="en-us_topic_scale_rds__note11544369163244"><span class="noticetitle"><img src="public_sys-resources/notice_3.0-en-us.png"> </span><div class="noticebody"><p id="en-us_topic_scale_rds__p2129101219494">After you change a MySQL instance class, the values of the following parameters will also be changed accordingly: <span class="parmname" id="en-us_topic_scale_rds__parmname90532015093248"><b>back_log</b></span>, <span class="parmname" id="en-us_topic_scale_rds__parmname1198729222143910"><b>innodb_buffer_pool_size</b></span>, <span class="parmname" id="en-us_topic_scale_rds__parmname1247402425143910"><b>innodb_log_buffer_size</b></span>, <span class="parmname" id="en-us_topic_scale_rds__parmname2062536632143910"><b>innodb_log_files_in_group</b></span>, <span class="parmname" id="en-us_topic_scale_rds__parmname100981576143910"><b>max_connections</b></span>, <span class="parmname" id="en-us_topic_scale_rds__parmname140111938143910"><b>innodb_page_cleaners</b></span>, <span class="parmname" id="en-us_topic_scale_rds__parmname1366326264143910"><b>innodb_buffer_pool_instances</b></span>, <span class="parmname" id="en-us_topic_scale_rds__parmname376466003143910"><b>threadpool_size</b></span>, and <span class="parmname" id="en-us_topic_scale_rds__parmname708497802143910"><b>slave_parallel_workers</b></span>.</p>
</div></div>
</p></li></ol>

View File

@ -13,7 +13,7 @@
</div>
</p></li></ol>
</div>
<div class="section" id="en-us_topic_sqlserver_reset_password__section12149154434113"><h4 class="sectiontitle">Method 2</h4><ol id="en-us_topic_sqlserver_reset_password__en-us_topic_0171122716_ol796760111472"><li id="en-us_topic_sqlserver_reset_password__li415010322371"><span>Log in to the management console.</span></li><li id="en-us_topic_sqlserver_reset_password__li6150103216374"><span>Click <span><img id="en-us_topic_sqlserver_reset_password__rds_modify_instance_name_en-us_topic_0192953815_image192529212293_1" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="en-us_topic_sqlserver_reset_password__li915053213377"><span>Click <strong id="en-us_topic_sqlserver_reset_password__rds_modify_instance_name_b171171523153019_1">Service List</strong>. Under <strong id="en-us_topic_sqlserver_reset_password__rds_modify_instance_name_b111722319302_1">Database</strong>, click <strong id="en-us_topic_sqlserver_reset_password__rds_modify_instance_name_b15118152363010_1">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="en-us_topic_sqlserver_reset_password__en-us_topic_0171122716_li61161897172844"><span>On the <strong id="en-us_topic_sqlserver_reset_password__b9951311191120">Instances</strong> page, click the target DB instance.</span></li><li id="en-us_topic_sqlserver_reset_password__en-us_topic_0192954253_li152771616238"><span>On the <strong id="en-us_topic_sqlserver_reset_password__rds_reset_password_b520213362917">Overview</strong> page, find <strong id="en-us_topic_sqlserver_reset_password__rds_reset_password_b165392054011">Administrator</strong> and click <strong id="en-us_topic_sqlserver_reset_password__rds_reset_password_b1635844024020">Reset Password</strong> under it.</span></li><li id="en-us_topic_sqlserver_reset_password__en-us_topic_0171122716_li36398892172958"><span>In the displayed dialog box, enter and confirm a new password.</span><p><div class="notice" id="en-us_topic_sqlserver_reset_password__en-us_topic_0171122716_note5427133210139"><span class="noticetitle"><img src="public_sys-resources/notice_3.0-en-us.png"> </span><div class="noticebody"><p id="en-us_topic_sqlserver_reset_password__en-us_topic_0171122716_en-us_topic_0086556964_p72930251247">Keep this password secure. The system cannot retrieve it.</p>
<div class="section" id="en-us_topic_sqlserver_reset_password__section12149154434113"><h4 class="sectiontitle">Method 2</h4><ol id="en-us_topic_sqlserver_reset_password__en-us_topic_0171122716_ol796760111472"><li id="en-us_topic_sqlserver_reset_password__li415010322371"><span>Log in to the management console.</span></li><li id="en-us_topic_sqlserver_reset_password__li6150103216374"><span>Click <span><img id="en-us_topic_sqlserver_reset_password__rds_modify_instance_name_en-us_topic_0192953815_image192529212293_1" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="en-us_topic_sqlserver_reset_password__li915053213377"><span>Click <strong id="en-us_topic_sqlserver_reset_password__rds_modify_instance_name_b171171523153019_1">Service List</strong>. Under <strong id="en-us_topic_sqlserver_reset_password__rds_modify_instance_name_b111722319302_1">Database</strong>, click <strong id="en-us_topic_sqlserver_reset_password__rds_modify_instance_name_b15118152363010_1">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="en-us_topic_sqlserver_reset_password__en-us_topic_0171122716_li61161897172844"><span>On the <strong id="en-us_topic_sqlserver_reset_password__b9951311191120">Instances</strong> page, click the target DB instance.</span></li><li id="en-us_topic_sqlserver_reset_password__en-us_topic_0192954253_li152771616238"><span>On the <strong id="en-us_topic_sqlserver_reset_password__rds_reset_password_b564855482511">Summary</strong> page, find <strong id="en-us_topic_sqlserver_reset_password__rds_reset_password_b165392054011">Administrator</strong> and click <strong id="en-us_topic_sqlserver_reset_password__rds_reset_password_b1635844024020">Reset Password</strong> under it.</span></li><li id="en-us_topic_sqlserver_reset_password__en-us_topic_0171122716_li36398892172958"><span>In the displayed dialog box, enter and confirm a new password.</span><p><div class="notice" id="en-us_topic_sqlserver_reset_password__en-us_topic_0171122716_note5427133210139"><span class="noticetitle"><img src="public_sys-resources/notice_3.0-en-us.png"> </span><div class="noticebody"><p id="en-us_topic_sqlserver_reset_password__en-us_topic_0171122716_en-us_topic_0086556964_p72930251247">Keep this password secure. The system cannot retrieve it.</p>
</div></div>
<p id="en-us_topic_sqlserver_reset_password__en-us_topic_0171122716_p1548436881">The new password must consist of 8 to 32 characters and contain at least three types of the following characters: uppercase letters, lowercase letters, digits, and special characters (~!@#$%^*-_+?,). Enter a strong password and periodically change it for security reasons.</p>
<div class="p" id="en-us_topic_sqlserver_reset_password__p8830181016717">If provided password will be considered by system as weak, you will receive an error and you should provide stronger password.<ul id="en-us_topic_sqlserver_reset_password__en-us_topic_0171122716_udeca270c0f4c49a991fae926b1a90eb0"><li id="en-us_topic_sqlserver_reset_password__en-us_topic_0171122716_l47afef1c78ec44c4b6feab9ec6c68324">To submit the new password, click <strong id="en-us_topic_sqlserver_reset_password__b1697516216315">OK</strong>.</li><li id="en-us_topic_sqlserver_reset_password__en-us_topic_0171122716_l830e34f1e56244b899449f020bd1c5cf">To cancel the reset operation, click <strong id="en-us_topic_sqlserver_reset_password__b1730020415312">Cancel</strong>.</li></ul>

View File

@ -2,54 +2,68 @@
<h1 class="topictitle1">DB Instance Storage Types</h1>
<div id="body1572250937727"><p id="rds_01_0020__p141541598377">The database system is generally an important part of an IT system and has high requirements on storage I/O performance. You can select a storage type based on service demands. You cannot change the storage type after the DB instance is created.</p>
<div class="section" id="rds_01_0020__section19617114611142"><h4 class="sectiontitle">Description</h4><p id="rds_01_0020__p15502173814215">RDS supports <strong id="rds_01_0020__b19431182655313">Cloud SSD and </strong><strong id="rds_01_0020__b1634810413416">Extreme SSD</strong> to suit different performance requirements of your workloads.</p>
<ul id="rds_01_0020__ul17642104017155"><li id="rds_01_0020__li54901030151620">Cloud SSD<p id="rds_01_0020__p17134165501618"><a name="rds_01_0020__li54901030151620"></a><a name="li54901030151620"></a>Stores data in cloud disks for decoupled storage and compute. The maximum throughput is 350 MB/s.</p>
<div class="section" id="rds_01_0020__section19617114611142"><h4 class="sectiontitle">Description</h4><div class="p" id="rds_01_0020__p15502173814215">RDS supports <strong id="rds_01_0020__b19431182655313">Cloud SSD, </strong><strong id="rds_01_0020__b1634810413416">Extreme SSD </strong>and<strong id="rds_01_0020__b734994124113"> Flexible SSD</strong> to suit different performance requirements of your workloads.<ul id="rds_01_0020__ul17642104017155"><li id="rds_01_0020__li54901030151620">Cloud SSD<p id="rds_01_0020__p17134165501618"><a name="rds_01_0020__li54901030151620"></a><a name="li54901030151620"></a>Stores data in cloud disks for decoupled storage and compute. The maximum throughput is 350 MB/s.</p>
</li><li id="rds_01_0020__li987316913174">Extreme SSD<p id="rds_01_0020__p12193381715"><a name="rds_01_0020__li987316913174"></a><a name="li987316913174"></a>Uses 25GE network and RDMA technologies to provide you with up to 1,000 MB/s throughput per disk and sub-millisecond latency.</p>
</li><li id="rds_01_0020__li7377132911578">Flexible SSD<p id="rds_01_0020__p51829327303"><a name="rds_01_0020__li7377132911578"></a><a name="li7377132911578"></a>Decouples capacity from performance and allows for tailored IOPS and throughput for your business requirements. This storage type is ideal for mainstream interactive applications that require high performance and low latency.</p>
<p id="rds_01_0020__p25711583578">You can preconfigure an IOPS ranging from 3,000 to 128,000. This IOPS must also be less than or equal to 500 times the storage capacity. You can preconfigure a throughput ranging from 125 to 1,000 MiB/s. This throughput must also be less than or equal to the IOPS divided by 4.</p>
</li></ul>
</div>
</div>
<div class="section" id="rds_01_0020__section16335234194"><h4 class="sectiontitle">Performance Comparison</h4>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="rds_01_0020__table64124292310" frame="border" border="1" rules="all"><caption><b>Table 1 </b>Performance comparison</caption><thead align="left"><tr id="rds_01_0020__row45124262311"><th align="left" class="cellrowborder" valign="top" width="29.073756432246995%" id="mcps1.3.3.2.2.4.1.1"><p id="rds_01_0020__p16534222313">Item</p>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="rds_01_0020__table64124292310" frame="border" border="1" rules="all"><caption><b>Table 1 </b>Performance comparison</caption><thead align="left"><tr id="rds_01_0020__row45124262311"><th align="left" class="cellrowborder" valign="top" width="21.488336713995942%" id="mcps1.3.3.2.2.5.1.1"><p id="rds_01_0020__p16534222313">Item</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="35.883361921097766%" id="mcps1.3.3.2.2.4.1.2"><p id="rds_01_0020__p6554232312">Cloud SSD</p>
<th align="left" class="cellrowborder" valign="top" width="26.521298174442187%" id="mcps1.3.3.2.2.5.1.2"><p id="rds_01_0020__p6554232312">Cloud SSD</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="35.042881646655225%" id="mcps1.3.3.2.2.4.1.3"><p id="rds_01_0020__p155184282318">Extreme SSD</p>
<th align="left" class="cellrowborder" valign="top" width="25.900101419878297%" id="mcps1.3.3.2.2.5.1.3"><p id="rds_01_0020__p155184282318">Extreme SSD</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="26.090263691683568%" id="mcps1.3.3.2.2.5.1.4"><p id="rds_01_0020__p1692814893711">Flexible SSD</p>
</th>
</tr>
</thead>
<tbody><tr id="rds_01_0020__row7516421236"><td class="cellrowborder" valign="top" width="29.073756432246995%" headers="mcps1.3.3.2.2.4.1.1 "><p id="rds_01_0020__p3594282312">I/O performance</p>
<tbody><tr id="rds_01_0020__row7516421236"><td class="cellrowborder" valign="top" width="21.488336713995942%" headers="mcps1.3.3.2.2.5.1.1 "><p id="rds_01_0020__p3594282312">I/O performance</p>
</td>
<td class="cellrowborder" valign="top" width="35.883361921097766%" headers="mcps1.3.3.2.2.4.1.2 "><p id="rds_01_0020__p15515425233">Subpar I/O performance due to additional network I/O overheads</p>
<td class="cellrowborder" valign="top" width="26.521298174442187%" headers="mcps1.3.3.2.2.5.1.2 "><p id="rds_01_0020__p15515425233">Subpar I/O performance due to additional network I/O overheads</p>
</td>
<td class="cellrowborder" valign="top" width="35.042881646655225%" headers="mcps1.3.3.2.2.4.1.3 "><p id="rds_01_0020__p145114214236">Higher I/O performance than cloud SSDs</p>
<td class="cellrowborder" valign="top" width="25.900101419878297%" headers="mcps1.3.3.2.2.5.1.3 "><p id="rds_01_0020__p145114214236">Higher I/O performance than cloud SSDs</p>
</td>
<td class="cellrowborder" valign="top" width="26.090263691683568%" headers="mcps1.3.3.2.2.5.1.4 "><p id="rds_01_0020__p1592813893718">On-demand IOPS and throughput</p>
</td>
</tr>
<tr id="rds_01_0020__row65134282312"><td class="cellrowborder" valign="top" width="29.073756432246995%" headers="mcps1.3.3.2.2.4.1.1 "><p id="rds_01_0020__p95124262312">Elastic scalability</p>
<tr id="rds_01_0020__row65134282312"><td class="cellrowborder" valign="top" width="21.488336713995942%" headers="mcps1.3.3.2.2.5.1.1 "><p id="rds_01_0020__p95124262312">Elastic scalability</p>
</td>
<td class="cellrowborder" valign="top" width="35.883361921097766%" headers="mcps1.3.3.2.2.4.1.2 "><p id="rds_01_0020__p7584252318">Scaling in seconds</p>
<td class="cellrowborder" valign="top" width="26.521298174442187%" headers="mcps1.3.3.2.2.5.1.2 "><p id="rds_01_0020__p7584252318">Scaling in seconds</p>
</td>
<td class="cellrowborder" valign="top" width="35.042881646655225%" headers="mcps1.3.3.2.2.4.1.3 "><p id="rds_01_0020__p1651042122311">Scaling in seconds</p>
<td class="cellrowborder" valign="top" width="25.900101419878297%" headers="mcps1.3.3.2.2.5.1.3 "><p id="rds_01_0020__p1651042122311">Scaling in seconds</p>
</td>
<td class="cellrowborder" valign="top" width="26.090263691683568%" headers="mcps1.3.3.2.2.5.1.4 "><p id="rds_01_0020__p159284883712">Scaling in seconds</p>
</td>
</tr>
<tr id="rds_01_0020__row5510426239"><td class="cellrowborder" valign="top" width="29.073756432246995%" headers="mcps1.3.3.2.2.4.1.1 "><p id="rds_01_0020__p5554220231">Maximum IOPS</p>
<tr id="rds_01_0020__row5510426239"><td class="cellrowborder" valign="top" width="21.488336713995942%" headers="mcps1.3.3.2.2.5.1.1 "><p id="rds_01_0020__p5554220231">Maximum IOPS</p>
</td>
<td class="cellrowborder" valign="top" width="35.883361921097766%" headers="mcps1.3.3.2.2.4.1.2 "><p id="rds_01_0020__p6564252318">50,000</p>
<td class="cellrowborder" valign="top" width="26.521298174442187%" headers="mcps1.3.3.2.2.5.1.2 "><p id="rds_01_0020__p6564252318">50,000</p>
</td>
<td class="cellrowborder" valign="top" width="35.042881646655225%" headers="mcps1.3.3.2.2.4.1.3 "><p id="rds_01_0020__p55164242319">128,000</p>
<td class="cellrowborder" valign="top" width="25.900101419878297%" headers="mcps1.3.3.2.2.5.1.3 "><p id="rds_01_0020__p55164242319">128,000</p>
</td>
<td class="cellrowborder" valign="top" width="26.090263691683568%" headers="mcps1.3.3.2.2.5.1.4 "><p id="rds_01_0020__p169281682373">128,000</p>
</td>
</tr>
<tr id="rds_01_0020__row4514217238"><td class="cellrowborder" valign="top" width="29.073756432246995%" headers="mcps1.3.3.2.2.4.1.1 "><p id="rds_01_0020__p1755427233">Maximum throughput</p>
<tr id="rds_01_0020__row4514217238"><td class="cellrowborder" valign="top" width="21.488336713995942%" headers="mcps1.3.3.2.2.5.1.1 "><p id="rds_01_0020__p1755427233">Maximum throughput</p>
</td>
<td class="cellrowborder" valign="top" width="35.883361921097766%" headers="mcps1.3.3.2.2.4.1.2 "><p id="rds_01_0020__p651642132319">350 MiB/s</p>
<td class="cellrowborder" valign="top" width="26.521298174442187%" headers="mcps1.3.3.2.2.5.1.2 "><p id="rds_01_0020__p651642132319">350 MiB/s</p>
</td>
<td class="cellrowborder" valign="top" width="35.042881646655225%" headers="mcps1.3.3.2.2.4.1.3 "><p id="rds_01_0020__p195342122316">For specifications with more than 32 vCPUs, the maximum throughput is 1,000 MiB/s.</p>
<td class="cellrowborder" valign="top" width="25.900101419878297%" headers="mcps1.3.3.2.2.5.1.3 "><p id="rds_01_0020__p195342122316">For specifications with more than 32 vCPUs, the maximum throughput is 1,000 MiB/s.</p>
<p id="rds_01_0020__p1784134354013">For specifications with 32 vCPUs or fewer, the maximum throughput may not reach 1,000 MiB/s due to the underlying architecture.</p>
</td>
<td class="cellrowborder" valign="top" width="26.090263691683568%" headers="mcps1.3.3.2.2.5.1.4 "><p id="rds_01_0020__p1192814815374">1,000 MiB/s</p>
</td>
</tr>
<tr id="rds_01_0020__row677112541234"><td class="cellrowborder" valign="top" width="29.073756432246995%" headers="mcps1.3.3.2.2.4.1.1 "><p id="rds_01_0020__p18771554122314">Read/write latency</p>
<tr id="rds_01_0020__row677112541234"><td class="cellrowborder" valign="top" width="21.488336713995942%" headers="mcps1.3.3.2.2.5.1.1 "><p id="rds_01_0020__p18771554122314">Read/write latency</p>
</td>
<td class="cellrowborder" valign="top" width="35.883361921097766%" headers="mcps1.3.3.2.2.4.1.2 "><p id="rds_01_0020__p16771185442317">Medium</p>
<td class="cellrowborder" valign="top" width="26.521298174442187%" headers="mcps1.3.3.2.2.5.1.2 "><p id="rds_01_0020__p16771185442317">Medium</p>
</td>
<td class="cellrowborder" valign="top" width="35.042881646655225%" headers="mcps1.3.3.2.2.4.1.3 "><p id="rds_01_0020__p137711254142313">Medium</p>
<td class="cellrowborder" valign="top" width="25.900101419878297%" headers="mcps1.3.3.2.2.5.1.3 "><p id="rds_01_0020__p137711254142313">Medium</p>
</td>
<td class="cellrowborder" valign="top" width="26.090263691683568%" headers="mcps1.3.3.2.2.5.1.4 "><p id="rds_01_0020__p49289813716">Medium</p>
</td>
</tr>
</tbody>

View File

@ -25,9 +25,9 @@
</tr>
<tr id="rds_01_0021__row1223994413545"><td class="cellrowborder" valign="top" width="18.76%" headers="mcps1.3.3.2.5.1.1 "><p id="rds_01_0021__p12391244145410">PostgreSQL</p>
</td>
<td class="cellrowborder" valign="top" width="30.810000000000002%" headers="mcps1.3.3.2.5.1.2 "><ul id="rds_01_0021__ul153957284"><li id="rds_01_0021__li1738992716537">17</li><li id="rds_01_0021__li931795312120">16</li><li id="rds_01_0021__li859374122512">15</li><li id="rds_01_0021__li999014355212">14</li><li id="rds_01_0021__li578915812569">13</li><li id="rds_01_0021__li99033116571">12</li></ul>
<td class="cellrowborder" valign="top" width="30.810000000000002%" headers="mcps1.3.3.2.5.1.2 "><ul id="rds_01_0021__ul153957284"><li id="rds_01_0021__li1738992716537">17</li><li id="rds_01_0021__li931795312120">16</li><li id="rds_01_0021__li859374122512">15</li><li id="rds_01_0021__li999014355212">14</li><li id="rds_01_0021__li578915812569">13</li></ul>
</td>
<td class="cellrowborder" valign="top" width="30.740000000000006%" headers="mcps1.3.3.2.5.1.3 "><ul id="rds_01_0021__ul679911214816"><li id="rds_01_0021__li18298633115316">17</li><li id="rds_01_0021__li095315710217">16</li><li id="rds_01_0021__li323388192520">15</li><li id="rds_01_0021__li6873739102110">14</li><li id="rds_01_0021__li11561141825619">13</li><li id="rds_01_0021__li877983015583">12</li></ul>
<td class="cellrowborder" valign="top" width="30.740000000000006%" headers="mcps1.3.3.2.5.1.3 "><ul id="rds_01_0021__ul679911214816"><li id="rds_01_0021__li18298633115316">17</li><li id="rds_01_0021__li095315710217">16</li><li id="rds_01_0021__li323388192520">15</li><li id="rds_01_0021__li6873739102110">14</li><li id="rds_01_0021__li11561141825619">13</li></ul>
</td>
<td class="cellrowborder" valign="top" width="19.69%" headers="mcps1.3.3.2.5.1.4 "><p id="rds_01_0021__p92311432122413">Not supported</p>
</td>

View File

@ -83,19 +83,6 @@
<td class="cellrowborder" valign="top" width="16.66833316668333%" headers="mcps1.3.3.2.2.7.1.6 "><p id="rds_01_0089__p1044133318303">November 2026</p>
</td>
</tr>
<tr id="rds_01_0089__row7155161632212"><td class="cellrowborder" valign="top" width="11.938806119388062%" headers="mcps1.3.3.2.2.7.1.1 "><p id="rds_01_0089__p14441123343013">12</p>
</td>
<td class="cellrowborder" valign="top" width="17.848215178482153%" headers="mcps1.3.3.2.2.7.1.2 "><p id="rds_01_0089__p18441193333018">Commercial use</p>
</td>
<td class="cellrowborder" valign="top" width="17.528247175282473%" headers="mcps1.3.3.2.2.7.1.3 "><p id="rds_01_0089__p644113343011">October 2019</p>
</td>
<td class="cellrowborder" valign="top" width="18.188181181881813%" headers="mcps1.3.3.2.2.7.1.4 "><p id="rds_01_0089__p1441143393018">November 2024</p>
</td>
<td class="cellrowborder" valign="top" width="17.82821717828217%" headers="mcps1.3.3.2.2.7.1.5 "><p id="rds_01_0089__p4441133316303">February 2021</p>
</td>
<td class="cellrowborder" valign="top" width="16.66833316668333%" headers="mcps1.3.3.2.2.7.1.6 "><p id="rds_01_0089__p20441183315306">April 2026</p>
</td>
</tr>
</tbody>
</table>
</div>

View File

@ -49,7 +49,7 @@
<tr id="rds_02_0008__row1358513420295"><td class="cellrowborder" valign="top" width="23%" headers="mcps1.3.2.2.5.2.2.2.3.1.1 "><p id="rds_02_0008__p6388049191912">Storage Type</p>
</td>
<td class="cellrowborder" valign="top" width="77%" headers="mcps1.3.2.2.5.2.2.2.3.1.2 "><p id="rds_02_0008__p33881249161918">Determines the DB instance read/write speed. The higher the maximum throughput is, the higher the DB instance read/write speed can be.</p>
<ul id="rds_02_0008__ul2388249181917"><li id="rds_02_0008__li1038974918192"><strong id="rds_02_0008__b1338954915194">Cloud SSD</strong>: cloud drives used to decouple storage from compute. The maximum throughput is 350 MB/s.</li><li id="rds_02_0008__li15389749101912"><strong id="rds_02_0008__b113894496197">Extreme SSD</strong>: uses 25GE network and RDMA technologies to provide you with up to 1,000 MB/s throughput per disk and sub-millisecond latency.</li></ul>
<ul id="rds_02_0008__ul2388249181917"><li id="rds_02_0008__li1038974918192"><strong id="rds_02_0008__b1338954915194">Cloud SSD</strong>: cloud drives used to decouple storage from compute. The maximum throughput is 350 MB/s.</li><li id="rds_02_0008__li15389749101912"><strong id="rds_02_0008__b113894496197">Extreme SSD</strong>: uses 25GE network and RDMA technologies to provide you with up to 1,000 MB/s throughput per disk and sub-millisecond latency.</li><li id="rds_02_0008__li89539591842"><strong id="rds_02_0008__b5120123168">Flexible SSD</strong>: decouples capacity from performance and allows for tailored IOPS and throughput for your business requirements. This storage type is ideal for mainstream interactive applications that require high performance and low latency.</li></ul>
</td>
</tr>
<tr id="rds_02_0008__row1522599175410"><td class="cellrowborder" valign="top" width="23%" headers="mcps1.3.2.2.5.2.2.2.3.1.1 "><p id="rds_02_0008__p112255955412">Primary AZ/Standby AZ</p>
@ -71,8 +71,6 @@
<tbody><tr id="rds_02_0008__row15225999544"><td class="cellrowborder" valign="top" width="23%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_02_0008__p3225169185417">Instance Class</p>
</td>
<td class="cellrowborder" valign="top" width="77%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><p id="rds_02_0008__p32253910544">Refers to the CPU and memory of a DB instance. Different instance classes have different numbers of database connections and different maximum IOPS.</p>
<p id="rds_02_0008__p32256913542"></p>
<p id="rds_02_0008__p2022518955412"></p>
<p id="rds_02_0008__p12042810516">For details about instance classes, see section <a href="rds_01_0029.html">DB Instance Classes</a>.</p>
<p id="rds_02_0008__p19542517536">After a DB instance is created, you can change its instance class. For details, see section <a href="en-us_topic_scale_rds.html">Changing a DB Instance Class</a>.</p>
</td>
@ -80,17 +78,29 @@
<tr id="rds_02_0008__row4887142410214"><td class="cellrowborder" valign="top" width="23%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_02_0008__p108081627182118">Storage Space</p>
</td>
<td class="cellrowborder" valign="top" width="77%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><p id="rds_02_0008__p1724017955414">Contains the file system overhead required for inode, reserved block, and database operation.</p>
<p id="rds_02_0008__p13797182010276">After a DB instance is created, you can scale up its storage space. For details, see section <a href="en-us_topic_scale_cluster.html">Scaling up Storage Space</a>.</p>
<p id="rds_02_0008__p13797182010276">After a DB instance is created, you can scale up its storage space. For details, see section <a href="en-us_topic_scale_cluster.html">Scaling Up Storage Space</a>.</p>
</td>
</tr>
<tr id="rds_02_0008__row2240794541"><td class="cellrowborder" valign="top" width="23%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_02_0008__p78026222713">Enable autoscaling</p>
</td>
<td class="cellrowborder" valign="top" width="77%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><div class="p" id="rds_02_0008__p8346104231116">If the storage type is cloud SSD or extreme SSD, you can enable storage autoscaling. When the available storage drops to a specified threshold, autoscaling is triggered.<ul id="rds_02_0008__ul17346742141119"><li id="rds_02_0008__li63451142141114"><strong id="rds_02_0008__b14504104319516">Enable autoscaling</strong>: If you select this option, autoscaling is enabled.</li><li id="rds_02_0008__li6345184211110"><strong id="rds_02_0008__b135949501267">Trigger If Available Storage Drops To</strong>: If the available storage drops to a specified threshold or 10 GB, autoscaling is triggered.</li><li id="rds_02_0008__li20346154219113"><strong id="rds_02_0008__b6608921786">Autoscaling Limit</strong>: The default value range is from 40 GB to 4,000 GB. The limit must be no less than the storage of the DB instance.</li></ul>
<td class="cellrowborder" valign="top" width="77%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><div class="p" id="rds_02_0008__p8346104231116">You can enable storage autoscaling. When the available storage drops to a specified threshold, autoscaling is triggered.<ul id="rds_02_0008__ul17346742141119"><li id="rds_02_0008__li63451142141114"><strong id="rds_02_0008__b14504104319516">Enable autoscaling</strong>: If you select this option, autoscaling is enabled.</li><li id="rds_02_0008__li6345184211110"><strong id="rds_02_0008__b135949501267">Trigger If Available Storage Drops To</strong>: If the available storage drops to a specified threshold or 10 GB, autoscaling is triggered.</li><li id="rds_02_0008__li20346154219113"><strong id="rds_02_0008__b6608921786">Autoscaling Limit</strong>: The default value range is from 40 GB to 4,000 GB. The limit must be no less than the storage of the DB instance.</li></ul>
</div>
<div class="note" id="rds_02_0008__note167221857132714"><span class="notetitle"> NOTE: </span><div class="notebody"><p id="rds_02_0008__p030615462217">If you specify a read replica when creating a primary DB instance and enable storage autoscaling for the primary DB instance, storage autoscaling is also enabled for the read replica by default.</p>
</div></div>
</td>
</tr>
<tr id="rds_02_0008__row57834420116"><td class="cellrowborder" valign="top" width="23%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_02_0008__p957810411419">IOPS</p>
</td>
<td class="cellrowborder" valign="top" width="77%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><p id="rds_02_0008__p1479043414912">This parameter is required when the storage type is <strong id="rds_02_0008__b59745445916">Flexible SSD</strong>.</p>
<p id="rds_02_0008__p164560229108">The value range is from 3000 to 128000. The IOPS is limited by the disk size and must be no greater than 500 times the disk capacity.</p>
</td>
</tr>
<tr id="rds_02_0008__row5315114419110"><td class="cellrowborder" valign="top" width="23%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_02_0008__p1398311411817">Throughput</p>
</td>
<td class="cellrowborder" valign="top" width="77%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><p id="rds_02_0008__p33333381693">This parameter is required when the storage type is <strong id="rds_02_0008__b1080524813911">Flexible SSD</strong>.</p>
<p id="rds_02_0008__p2407414152616">The value ranges from 125 to 1000 (in MiB/s) and must also be no greater than the IOPS divided by 4.</p>
</td>
</tr>
<tr id="rds_02_0008__row15240109205415"><td class="cellrowborder" valign="top" width="23%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_02_0008__p1624014905414">Disk Encryption</p>
</td>
<td class="cellrowborder" valign="top" width="77%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><p id="rds_02_0008__p124855615294">Enabling disk encryption enhances data security but reduces the database's read and write performance by 5%.</p>

View File

@ -25,12 +25,12 @@
</tr>
<tr id="rds_02_0016__row2331133912911"><td class="cellrowborder" valign="top" width="29.38%" headers="mcps1.3.3.2.2.2.2.2.3.1.1 "><p id="rds_02_0016__p1331339598">&lt;<em id="rds_02_0016__i1463194141011">host</em>&gt;</p>
</td>
<td class="cellrowborder" valign="top" width="70.62%" headers="mcps1.3.3.2.2.2.2.2.3.1.2 "><p id="rds_02_0016__p6331123917911">Indicates the IP address of the primary DB instance. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0016__uicontrol9192714164019"><b>Overview</b></span> page of the DB instance. If the DB instance is accessed through the <span id="rds_02_0016__text15714121812309">ECS</span>, the IP address can be found in the <span class="uicontrol" id="rds_02_0016__uicontrol1415113713312"><b>Floating IP Address</b></span> field in the <span class="uicontrol" id="rds_02_0016__uicontrol1339174251714"><b>Connectivity</b></span> area.</p>
<td class="cellrowborder" valign="top" width="70.62%" headers="mcps1.3.3.2.2.2.2.2.3.1.2 "><p id="rds_02_0016__p6331123917911">Indicates the IP address of the primary DB instance. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0016__uicontrol333041703111"><b>Summary</b></span> page of the DB instance. If the DB instance is accessed through the <span id="rds_02_0016__text15714121812309">ECS</span>, the IP address can be found in the <span class="uicontrol" id="rds_02_0016__uicontrol1415113713312"><b>Floating IP Address</b></span> field in the <span class="uicontrol" id="rds_02_0016__uicontrol1339174251714"><b>Connectivity</b></span> area.</p>
</td>
</tr>
<tr id="rds_02_0016__row1333115398920"><td class="cellrowborder" valign="top" width="29.38%" headers="mcps1.3.3.2.2.2.2.2.3.1.1 "><p id="rds_02_0016__p9331143910914">&lt;<em id="rds_02_0016__i13981145351015">port</em>&gt;</p>
</td>
<td class="cellrowborder" valign="top" width="70.62%" headers="mcps1.3.3.2.2.2.2.2.3.1.2 "><p id="rds_02_0016__p1533111391295">Indicates the database port in use. The default value is <strong id="rds_02_0016__b851085514431">5432</strong>. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0016__uicontrol19161203321320"><b>Overview</b></span> page of the DB instance. The port number can be found in the <span class="uicontrol" id="rds_02_0016__uicontrol3512255124310"><b>Database Port</b></span> field in the <span class="uicontrol" id="rds_02_0016__uicontrol205131555164311"><b>Connectivity</b></span> area.</p>
<td class="cellrowborder" valign="top" width="70.62%" headers="mcps1.3.3.2.2.2.2.2.3.1.2 "><p id="rds_02_0016__p1533111391295">Indicates the database port in use. The default value is <strong id="rds_02_0016__b851085514431">5432</strong>. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0016__uicontrol1248232119312"><b>Summary</b></span> page of the DB instance. The port number can be found in the <span class="uicontrol" id="rds_02_0016__uicontrol3512255124310"><b>Database Port</b></span> field in the <span class="uicontrol" id="rds_02_0016__uicontrol205131555164311"><b>Connectivity</b></span> area.</p>
</td>
</tr>
<tr id="rds_02_0016__row1933283919915"><td class="cellrowborder" valign="top" width="29.38%" headers="mcps1.3.3.2.2.2.2.2.3.1.1 "><p id="rds_02_0016__p143321139694">&lt;<em id="rds_02_0016__i520061671117">datastore</em>&gt;</p>
@ -47,7 +47,7 @@
<pre class="codeblock" id="rds_02_0016__codeblock480614105588"><strong id="rds_02_0016__b18071910105817">psql --no-readline -U root -h 192.168.0.44 -p 5432 -d postgres -W</strong></pre>
</p></li></ol>
</div>
<div class="section" id="rds_02_0016__section836277162054"><h4 class="sectiontitle"><span class="keyword" id="rds_02_0016__keyword182851565306">SSL Connection</span></h4><ol id="rds_02_0016__oe949fbf25aff40c1ad987a049746f625"><li id="rds_02_0016__li17616348171"><span>Log in to the management console.</span></li><li id="rds_02_0016__li146168481712"><span>Click <span><img id="rds_02_0016__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_02_0016__li96167481711"><span>Click <strong id="rds_02_0016__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_02_0016__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_02_0016__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_02_0016__l322c3bcd0cc14ab28e1f842ca865d487"><span>On the <strong id="rds_02_0016__b209887715500">Instances</strong> page, click the target DB instance. In the <span class="uicontrol" id="rds_02_0016__uicontrol573017864212"><b>Basic Information</b></span> area on the <span class="uicontrol" id="rds_02_0016__uicontrol154781412161412"><b>Overview</b></span> page, click <strong id="rds_02_0016__b79964467716">Download</strong> in the <strong id="rds_02_0016__b1473338154218">SSL</strong> field to download the root certificate or certificate bundle.</span></li><li id="rds_02_0016__lfea66b0cbae8423fb43ae6adfa8804dd"><span>Upload the root certificate to the <span id="rds_02_0016__text0853830183017">ECS</span> or save it to the device to be connected to the DB instance.</span><p><p id="rds_02_0016__p123399553444">For details about how to import the root certificate to the Linux OS on the <span id="rds_02_0016__text57606246557">ECS</span>, see <a href="rds_faq_0052.html">How Can I Import the Root Certificate to a Windows or Linux OS?</a></p>
<div class="section" id="rds_02_0016__section836277162054"><h4 class="sectiontitle"><span class="keyword" id="rds_02_0016__keyword182851565306">SSL Connection</span></h4><ol id="rds_02_0016__oe949fbf25aff40c1ad987a049746f625"><li id="rds_02_0016__li17616348171"><span>Log in to the management console.</span></li><li id="rds_02_0016__li146168481712"><span>Click <span><img id="rds_02_0016__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_02_0016__li96167481711"><span>Click <strong id="rds_02_0016__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_02_0016__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_02_0016__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_02_0016__en-us_topic_0154555358_li2033132135913"><span>On the <span class="uicontrol" id="rds_02_0016__uicontrol78051637184115"><b>Instances</b></span> page, click the target DB instance. Click <strong id="rds_02_0016__b91941325204717">Download</strong> under <strong id="rds_02_0016__b7321729184510">SSL</strong> to download the Certificate Download package, and extract the root certificate ca.pem and bundle ca-bundle.pem from the package.</span></li><li id="rds_02_0016__lfea66b0cbae8423fb43ae6adfa8804dd"><span>Upload the root certificate to the <span id="rds_02_0016__text0853830183017">ECS</span> or save it to the device to be connected to the DB instance.</span><p><p id="rds_02_0016__p123399553444">For details about how to import the root certificate to the Linux OS on the <span id="rds_02_0016__text57606246557">ECS</span>, see <a href="rds_faq_0052.html">How Can I Import the Root Certificate to a Windows or Linux OS?</a></p>
</p></li><li id="rds_02_0016__l9181e1cf94d242afa93a2f4eb25f9311"><span>Connect to an <span id="rds_02_0016__text4171181582819">RDS</span> DB instance. The Linux OS is used as an example.</span><p><pre class="codeblock" id="rds_02_0016__codeblock35695258586"><strong id="rds_02_0016__b12571102555811">psql --no-readline -h </strong><em id="rds_02_0016__i15711525175814">&lt;host&gt;</em><strong id="rds_02_0016__b85717258581"> -p</strong><em id="rds_02_0016__i1457182520585"> &lt;port&gt;</em><strong id="rds_02_0016__b135718251588"> "dbname=</strong><em id="rds_02_0016__i1257152545812">&lt;database&gt; </em><strong id="rds_02_0016__b457112520584">user=</strong><em id="rds_02_0016__i18572112575816">&lt;user&gt; </em><strong id="rds_02_0016__b857242575810">sslmode=verify-ca sslrootcert=</strong><em id="rds_02_0016__i457292555815">&lt;ca-file-directory&gt;</em><strong id="rds_02_0016__b95721525195812">"</strong></pre>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="rds_02_0016__table518415566128" frame="border" border="1" rules="all"><caption><b>Table 2 </b>Parameter description</caption><thead align="left"><tr id="rds_02_0016__row151851356191216"><th align="left" class="cellrowborder" valign="top" width="20.44%" id="mcps1.3.4.2.6.2.2.2.3.1.1"><p id="rds_02_0016__p0185456141212"><strong id="rds_02_0016__b174721259164412">Parameter</strong></p>
@ -58,12 +58,12 @@
</thead>
<tbody><tr id="rds_02_0016__row11185195613125"><td class="cellrowborder" valign="top" width="20.44%" headers="mcps1.3.4.2.6.2.2.2.3.1.1 "><p id="rds_02_0016__p1918545617124"><em id="rds_02_0016__i14948141810139">&lt;host&gt;</em></p>
</td>
<td class="cellrowborder" valign="top" width="79.56%" headers="mcps1.3.4.2.6.2.2.2.3.1.2 "><p id="rds_02_0016__p1397112301139">IP address of the primary DB instance. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0016__uicontrol619851291519"><b>Overview</b></span> page of the DB instance. If the DB instance is accessed through the <span id="rds_02_0016__text6138113932411">ECS</span>, the IP address can be found in the <span class="uicontrol" id="rds_02_0016__uicontrol81382039192410"><b>Floating IP Address</b></span> field in the <strong id="rds_02_0016__b151391395245">Connectivity</strong> area.</p>
<td class="cellrowborder" valign="top" width="79.56%" headers="mcps1.3.4.2.6.2.2.2.3.1.2 "><p id="rds_02_0016__p1397112301139">IP address of the primary DB instance. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0016__uicontrol20293165618381"><b>Summary</b></span> page of the DB instance. If the DB instance is accessed through the <span id="rds_02_0016__text6138113932411">ECS</span>, the IP address can be found in the <span class="uicontrol" id="rds_02_0016__uicontrol81382039192410"><b>Floating IP Address</b></span> field in the <strong id="rds_02_0016__b151391395245">Connectivity</strong> area.</p>
</td>
</tr>
<tr id="rds_02_0016__row17185135615123"><td class="cellrowborder" valign="top" width="20.44%" headers="mcps1.3.4.2.6.2.2.2.3.1.1 "><p id="rds_02_0016__p318516569128"><em id="rds_02_0016__i1837210367132">&lt;port&gt;</em></p>
</td>
<td class="cellrowborder" valign="top" width="79.56%" headers="mcps1.3.4.2.6.2.2.2.3.1.2 "><p id="rds_02_0016__p18185115611217">Database port in use. The default value is <strong id="rds_02_0016__b4416415114518">5432</strong>. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0016__uicontrol421616367154"><b>Overview</b></span> page of the DB instance. The port number can be found in the <span class="uicontrol" id="rds_02_0016__uicontrol74186159453"><b>Database Port</b></span> field in the <strong id="rds_02_0016__b88719506154">Connectivity</strong> area.</p>
<td class="cellrowborder" valign="top" width="79.56%" headers="mcps1.3.4.2.6.2.2.2.3.1.2 "><p id="rds_02_0016__p18185115611217">Database port in use. The default value is <strong id="rds_02_0016__b4416415114518">5432</strong>. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0016__uicontrol2435743818"><b>Summary</b></span> page of the DB instance. The port number can be found in the <span class="uicontrol" id="rds_02_0016__uicontrol74186159453"><b>Database Port</b></span> field in the <strong id="rds_02_0016__b88719506154">Connectivity</strong> area.</p>
</td>
</tr>
<tr id="rds_02_0016__row15185155621219"><td class="cellrowborder" valign="top" width="20.44%" headers="mcps1.3.4.2.6.2.2.2.3.1.1 "><p id="rds_02_0016__p1418511561126"><em id="rds_02_0016__i166765404131">&lt;database&gt;</em></p>

View File

@ -30,7 +30,7 @@
</tr>
<tr id="rds_02_0047__row13345133120497"><td class="cellrowborder" valign="top" width="27.722772277227726%" headers="mcps1.3.3.2.3.2.2.2.3.1.1 "><p id="rds_02_0047__p18345123120494">Host</p>
</td>
<td class="cellrowborder" valign="top" width="72.27722772277228%" headers="mcps1.3.3.2.3.2.2.2.3.1.2 "><div class="p" id="rds_02_0047__p076620352501">Indicates the floating IP address of the DB instance to be connected. To view the floating IP address and port of the DB instance, perform the following steps:<ol type="a" id="rds_02_0047__ol2197921185015"><li id="rds_02_0047__li1619719218503">Log in to the <span id="rds_02_0047__text1055721813717">RDS</span> console.</li><li id="rds_02_0047__li1197182118505">Select the region in which the DB instance is located.</li><li id="rds_02_0047__li18198142125015">Click the target DB instance to enter the <strong id="rds_02_0047__b6905152219314">Overview</strong> page.</li><li id="rds_02_0047__li14198142155010">In the navigation pane on the left, choose <strong id="rds_02_0047__b41039399427">Connectivity &amp; Security</strong>. In the <strong id="rds_02_0047__b01041739154214">Connection Information</strong> area, view the floating IP address.</li></ol>
<td class="cellrowborder" valign="top" width="72.27722772277228%" headers="mcps1.3.3.2.3.2.2.2.3.1.2 "><div class="p" id="rds_02_0047__p076620352501">Indicates the floating IP address of the DB instance to be connected. To view the floating IP address and port of the DB instance, perform the following steps:<ol type="a" id="rds_02_0047__ol2197921185015"><li id="rds_02_0047__li1619719218503">Log in to the <span id="rds_02_0047__text1055721813717">RDS</span> console.</li><li id="rds_02_0047__li1197182118505">Select the region in which the DB instance is located.</li><li id="rds_02_0047__li18198142125015">Click the target DB instance to enter the <strong id="rds_02_0047__b168173174307">Summary</strong> page.</li><li id="rds_02_0047__li14198142155010">In the navigation pane on the left, choose <strong id="rds_02_0047__b41039399427">Connectivity &amp; Security</strong>. In the <strong id="rds_02_0047__b01041739154214">Connection Information</strong> area, view the floating IP address.</li></ol>
</div>
</td>
</tr>
@ -57,7 +57,7 @@
</div></div>
</p></li></ol>
</div>
<div class="section" id="rds_02_0047__section09675811156"><h4 class="sectiontitle">SSL Connection</h4><ol id="rds_02_0047__ol155871645114112"><li id="rds_02_0047__li17616348171"><span>Log in to the management console.</span></li><li id="rds_02_0047__li146168481712"><span>Click <span><img id="rds_02_0047__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_02_0047__li96167481711"><span>Click <strong id="rds_02_0047__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_02_0047__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_02_0047__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_02_0047__li2033132135913"><span>On the <span class="uicontrol" id="rds_02_0047__uff37fc472c13487a9736e639d74db007"><b>Instances</b></span> page, click the target DB instance. In the <strong id="rds_02_0047__b187171743261">Basic Information</strong> area on the <strong id="rds_02_0047__b175261916372">Overview</strong> page, click <strong id="rds_02_0047__b79964467716">Download</strong> in the <strong id="rds_02_0047__b19463123262315">SSL</strong> field to download the root certificate or certificate bundle.</span></li><li id="rds_02_0047__li5906798167"><span>Import the root certificate to the Linux OS on the <span id="rds_02_0047__text11595151132">ECS</span>. For details, see <a href="rds_faq_0052.html">How Can I Import the Root Certificate to a Windows or Linux OS?</a></span><p><div class="note" id="rds_02_0047__n64dd4fdca8bb4a01adaca7e1d3d0d7b1"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><ul id="rds_02_0047__ufe68f18ecce4425ea23c3c7a7130ef08"><li id="rds_02_0047__li11997201048">Since April 2017, RDS has offered a new root certificate that has a 20-year validation period. The new certificate takes effect after DB instances are rebooted. Replace the old certificate before it expires to improve system security.<p id="rds_02_0047__p122862915410"><a name="rds_02_0047__li11997201048"></a><a name="li11997201048"></a></p>
<div class="section" id="rds_02_0047__section09675811156"><h4 class="sectiontitle">SSL Connection</h4><ol id="rds_02_0047__ol155871645114112"><li id="rds_02_0047__li17616348171"><span>Log in to the management console.</span></li><li id="rds_02_0047__li146168481712"><span>Click <span><img id="rds_02_0047__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_02_0047__li96167481711"><span>Click <strong id="rds_02_0047__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_02_0047__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_02_0047__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_02_0047__li2033132135913"><span>On the <span class="uicontrol" id="rds_02_0047__uff37fc472c13487a9736e639d74db007"><b>Instances</b></span> page, click the target DB instance. Click <strong id="rds_02_0047__b79964467716">Download</strong> under <strong id="rds_02_0047__b19463123262315">SSL</strong> to download the Certificate Download package, and extract the root certificate ca.pem and bundle ca-bundle.pem from the package.</span></li><li id="rds_02_0047__li5906798167"><span>Import the root certificate to the Linux OS on the <span id="rds_02_0047__text11595151132">ECS</span>. For details, see <a href="rds_faq_0052.html">How Can I Import the Root Certificate to a Windows or Linux OS?</a></span><p><div class="note" id="rds_02_0047__n64dd4fdca8bb4a01adaca7e1d3d0d7b1"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><ul id="rds_02_0047__ufe68f18ecce4425ea23c3c7a7130ef08"><li id="rds_02_0047__li11997201048">Since April 2017, RDS has offered a new root certificate that has a 20-year validation period. The new certificate takes effect after DB instances are rebooted. Replace the old certificate before it expires to improve system security.<p id="rds_02_0047__p122862915410"><a name="rds_02_0047__li11997201048"></a><a name="li11997201048"></a></p>
<p id="rds_02_0047__p1861192114412"></p>
<p id="rds_02_0047__p201271427184420">For details, see section <a href="rds_faq_0051.html">How Can I Identify the Validity Period of an SSL Root Certificate?</a></p>
</li><li id="rds_02_0047__lb4018560df604b6099bbff9f1f5c3d79">You can also download the certificate bundle, which contains both the new certificate provided since April 2017 and the old certificate.</li></ul>
@ -72,12 +72,12 @@
</thead>
<tbody><tr id="rds_02_0047__row128591243133311"><td class="cellrowborder" valign="top" width="28.000000000000004%" headers="mcps1.3.4.2.6.2.2.2.3.1.1 "><p id="rds_02_0047__p128591843133314">&lt;<em id="rds_02_0047__i11472201511342">host</em>&gt;</p>
</td>
<td class="cellrowborder" valign="top" width="72%" headers="mcps1.3.4.2.6.2.2.2.3.1.2 "><p id="rds_02_0047__p78592436337">Floating IP address. To obtain this parameter, go to the <strong id="rds_02_0047__b106962591490">Overview</strong> page of the DB instance. In the navigation pane on the left, choose <strong id="rds_02_0047__b16345134415145">Connectivity &amp; Security</strong>. View the floating IP address in the <strong id="rds_02_0047__b193451344201415">Connection Information</strong> area,</p>
<td class="cellrowborder" valign="top" width="72%" headers="mcps1.3.4.2.6.2.2.2.3.1.2 "><p id="rds_02_0047__p78592436337">Floating IP address. To obtain this parameter, go to the <strong id="rds_02_0047__b6880719183016">Summary</strong> page of the DB instance. In the navigation pane on the left, choose <strong id="rds_02_0047__b16345134415145">Connectivity &amp; Security</strong>. View the floating IP address in the <strong id="rds_02_0047__b193451344201415">Connection Information</strong> area,</p>
</td>
</tr>
<tr id="rds_02_0047__row885918436335"><td class="cellrowborder" valign="top" width="28.000000000000004%" headers="mcps1.3.4.2.6.2.2.2.3.1.1 "><p id="rds_02_0047__p1985934313335"><em id="rds_02_0047__i148916198347">&lt;port&gt;</em></p>
</td>
<td class="cellrowborder" valign="top" width="72%" headers="mcps1.3.4.2.6.2.2.2.3.1.2 "><p id="rds_02_0047__p6859104373314">Database port. By default, the value is <strong id="rds_02_0047__b372029376135817">3306</strong>. To obtain this parameter, go to the <strong id="rds_02_0047__b88717342106">Overview</strong> page of the DB instance. In the navigation pane on the left, choose <strong id="rds_02_0047__b673175841510">Connectivity &amp; Security</strong>. View the database port in the <strong id="rds_02_0047__b20377312162">Connection Information</strong> area.</p>
<td class="cellrowborder" valign="top" width="72%" headers="mcps1.3.4.2.6.2.2.2.3.1.2 "><p id="rds_02_0047__p6859104373314">Database port. By default, the value is <strong id="rds_02_0047__b372029376135817">3306</strong>. To obtain this parameter, go to the <strong id="rds_02_0047__b217132112305">Summary</strong> page of the DB instance. In the navigation pane on the left, choose <strong id="rds_02_0047__b673175841510">Connectivity &amp; Security</strong>. View the database port in the <strong id="rds_02_0047__b20377312162">Connection Information</strong> area.</p>
</td>
</tr>
<tr id="rds_02_0047__row14859174318331"><td class="cellrowborder" valign="top" width="28.000000000000004%" headers="mcps1.3.4.2.6.2.2.2.3.1.1 "><p id="rds_02_0047__p20859184323316">&lt;<em id="rds_02_0047__i1310372463412">userName</em>&gt;</p>

View File

@ -24,12 +24,12 @@
</tr>
<tr id="rds_02_0051__row2331133912911"><td class="cellrowborder" valign="top" width="29.38%" headers="mcps1.3.3.2.2.2.2.2.3.1.1 "><p id="rds_02_0051__p1331339598">&lt;<em id="rds_02_0051__i1463194141011">host</em>&gt;</p>
</td>
<td class="cellrowborder" valign="top" width="70.62%" headers="mcps1.3.3.2.2.2.2.2.3.1.2 "><p id="rds_02_0051__p6331123917911">Indicates the IP address of the primary DB instance. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0051__uicontrol9192714164019"><b>Overview</b></span> page of the DB instance. The IP address can be found on the <span class="uicontrol" id="rds_02_0051__uicontrol6598143125116"><b><span id="rds_02_0051__text42741422163512">EIP</span>s</b></span> page.</p>
<td class="cellrowborder" valign="top" width="70.62%" headers="mcps1.3.3.2.2.2.2.2.3.1.2 "><p id="rds_02_0051__p6331123917911">Indicates the IP address of the primary DB instance. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0051__uicontrol46791933359"><b>Summary</b></span> page of the DB instance. The IP address can be found on the <span class="uicontrol" id="rds_02_0051__uicontrol6598143125116"><b><span id="rds_02_0051__text42741422163512">EIP</span>s</b></span> page.</p>
</td>
</tr>
<tr id="rds_02_0051__row1333115398920"><td class="cellrowborder" valign="top" width="29.38%" headers="mcps1.3.3.2.2.2.2.2.3.1.1 "><p id="rds_02_0051__p9331143910914">&lt;<em id="rds_02_0051__i13981145351015">port</em>&gt;</p>
</td>
<td class="cellrowborder" valign="top" width="70.62%" headers="mcps1.3.3.2.2.2.2.2.3.1.2 "><p id="rds_02_0051__p1533111391295">Indicates the database port in use. The default value is <strong id="rds_02_0051__b265814824516">5432</strong>. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0051__uicontrol1221619175173"><b>Overview</b></span> page of the DB instance. The port number can be found in the <span class="uicontrol" id="rds_02_0051__uicontrol36591848104517"><b>Database Port</b></span> field in the <span class="uicontrol" id="rds_02_0051__uicontrol205131555164311"><b>Connectivity</b></span> area.</p>
<td class="cellrowborder" valign="top" width="70.62%" headers="mcps1.3.3.2.2.2.2.2.3.1.2 "><p id="rds_02_0051__p1533111391295">Indicates the database port in use. The default value is <strong id="rds_02_0051__b265814824516">5432</strong>. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0051__uicontrol11992134103520"><b>Summary</b></span> page of the DB instance. The port number can be found in the <span class="uicontrol" id="rds_02_0051__uicontrol36591848104517"><b>Database Port</b></span> field in the <span class="uicontrol" id="rds_02_0051__uicontrol205131555164311"><b>Connectivity</b></span> area.</p>
</td>
</tr>
<tr id="rds_02_0051__row1933283919915"><td class="cellrowborder" valign="top" width="29.38%" headers="mcps1.3.3.2.2.2.2.2.3.1.1 "><p id="rds_02_0051__p143321139694">&lt;<em id="rds_02_0051__i520061671117">datastore</em>&gt;</p>
@ -46,7 +46,7 @@
<pre class="codeblock" id="rds_02_0051__codeblock16992720590"><strong id="rds_02_0051__b107006795911">psql --no-readline -U root -h 192.168.0.44 -p 5432 -d postgres -W</strong></pre>
</p></li></ol>
</div>
<div class="section" id="rds_02_0051__en-us_topic_0192953574_section836277162054"><h4 class="sectiontitle"><span class="keyword" id="rds_02_0051__keyword182851565306">SSL Connection</span></h4><ol id="rds_02_0051__en-us_topic_0192953574_oe949fbf25aff40c1ad987a049746f625"><li id="rds_02_0051__li17616348171"><span>Log in to the management console.</span></li><li id="rds_02_0051__li146168481712"><span>Click <span><img id="rds_02_0051__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_02_0051__li96167481711"><span>Click <strong id="rds_02_0051__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_02_0051__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_02_0051__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_02_0051__en-us_topic_0192953574_l322c3bcd0cc14ab28e1f842ca865d487"><span>On the <strong id="rds_02_0051__b9710163333018">Instances</strong> page, click the target DB instance. In the <span class="uicontrol" id="rds_02_0051__en-us_topic_0192953574_uicontrol573017864212"><b>Basic Information</b></span> area on the <span class="uicontrol" id="rds_02_0051__uicontrol1652815510194"><b>Overview</b></span> page, click <strong id="rds_02_0051__b79964467716">Download</strong> in the <strong id="rds_02_0051__en-us_topic_0192953574_b1473338154218">SSL</strong> field to download the root certificate or certificate bundle.</span></li><li id="rds_02_0051__en-us_topic_0192953574_lfea66b0cbae8423fb43ae6adfa8804dd"><span>Upload the root certificate to the <span id="rds_02_0051__text9713197144814">ECS</span> or save it to the device to be connected to the DB instance.</span><p><p id="rds_02_0051__p16391211164514">For details about how to import the root certificate to the Linux OS on the <span id="rds_02_0051__text17871544183519">ECS</span>, see <a href="rds_faq_0052.html">How Can I Import the Root Certificate to a Windows or Linux OS?</a></p>
<div class="section" id="rds_02_0051__en-us_topic_0192953574_section836277162054"><h4 class="sectiontitle"><span class="keyword" id="rds_02_0051__keyword182851565306">SSL Connection</span></h4><ol id="rds_02_0051__en-us_topic_0192953574_oe949fbf25aff40c1ad987a049746f625"><li id="rds_02_0051__li17616348171"><span>Log in to the management console.</span></li><li id="rds_02_0051__li146168481712"><span>Click <span><img id="rds_02_0051__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_02_0051__li96167481711"><span>Click <strong id="rds_02_0051__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_02_0051__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_02_0051__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_02_0051__en-us_topic_0154555358_li2033132135913"><span>On the <span class="uicontrol" id="rds_02_0051__uicontrol78051637184115"><b>Instances</b></span> page, click the target DB instance. Click <strong id="rds_02_0051__b763574815475">Download</strong> under <strong id="rds_02_0051__b7321729184510">SSL</strong> to download the Certificate Download package, and extract the root certificate ca.pem and bundle ca-bundle.pem from the package.</span></li><li id="rds_02_0051__en-us_topic_0192953574_lfea66b0cbae8423fb43ae6adfa8804dd"><span>Upload the root certificate to the <span id="rds_02_0051__text9713197144814">ECS</span> or save it to the device to be connected to the DB instance.</span><p><p id="rds_02_0051__p16391211164514">For details about how to import the root certificate to the Linux OS on the <span id="rds_02_0051__text17871544183519">ECS</span>, see <a href="rds_faq_0052.html">How Can I Import the Root Certificate to a Windows or Linux OS?</a></p>
</p></li><li id="rds_02_0051__en-us_topic_0192953574_l9181e1cf94d242afa93a2f4eb25f9311"><span>Connect to an <span id="rds_02_0051__text171841151103317">RDS</span> DB instance. The Linux OS is used as an example.</span><p><pre class="codeblock" id="rds_02_0051__codeblock24951714115911"><strong id="rds_02_0051__b2049811475916">psql --no-readline -h </strong><em id="rds_02_0051__i17498111414598">&lt;host&gt;</em><strong id="rds_02_0051__b14988140597"> -p</strong><em id="rds_02_0051__i204984148591"> &lt;port&gt;</em><strong id="rds_02_0051__b1049841425910"> "dbname=</strong><em id="rds_02_0051__i1749831410598">&lt;database&gt;</em><strong id="rds_02_0051__b14498111412591"> user=</strong><em id="rds_02_0051__i84981814195917">&lt;user&gt; </em><strong id="rds_02_0051__b3498181414599">sslmode=verify-ca sslrootcert=</strong><em id="rds_02_0051__i15498151418592">&lt;ca-file-directory&gt;</em><strong id="rds_02_0051__b449891475917">"</strong></pre>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="rds_02_0051__table518415566128" frame="border" border="1" rules="all"><caption><b>Table 2 </b>Parameter description</caption><thead align="left"><tr id="rds_02_0051__row151851356191216"><th align="left" class="cellrowborder" valign="top" width="27%" id="mcps1.3.4.2.6.2.2.2.3.1.1"><p id="rds_02_0051__p0185456141212"><strong id="rds_02_0051__b155923258558">Parameter</strong></p>
@ -57,12 +57,12 @@
</thead>
<tbody><tr id="rds_02_0051__row11185195613125"><td class="cellrowborder" valign="top" width="27%" headers="mcps1.3.4.2.6.2.2.2.3.1.1 "><p id="rds_02_0051__p1918545617124"><em id="rds_02_0051__i14948141810139">&lt;host&gt;</em></p>
</td>
<td class="cellrowborder" valign="top" width="73%" headers="mcps1.3.4.2.6.2.2.2.3.1.2 "><p id="rds_02_0051__p19362123813218">IP address of the primary DB instance. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0051__uicontrol4918122313182"><b>Overview</b></span> page of the DB instance. The IP address can be found on the <span class="uicontrol" id="rds_02_0051__uicontrol16804112511572"><b><span id="rds_02_0051__text13798525155718">EIP</span>s</b></span> page.</p>
<td class="cellrowborder" valign="top" width="73%" headers="mcps1.3.4.2.6.2.2.2.3.1.2 "><p id="rds_02_0051__p19362123813218">IP address of the primary DB instance. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0051__uicontrol18432181919356"><b>Summary</b></span> page of the DB instance. The IP address can be found on the <span class="uicontrol" id="rds_02_0051__uicontrol16804112511572"><b><span id="rds_02_0051__text13798525155718">EIP</span>s</b></span> page.</p>
</td>
</tr>
<tr id="rds_02_0051__row17185135615123"><td class="cellrowborder" valign="top" width="27%" headers="mcps1.3.4.2.6.2.2.2.3.1.1 "><p id="rds_02_0051__p318516569128"><em id="rds_02_0051__i1837210367132">&lt;port&gt;</em></p>
</td>
<td class="cellrowborder" valign="top" width="73%" headers="mcps1.3.4.2.6.2.2.2.3.1.2 "><p id="rds_02_0051__p18185115611217">Database port in use. The default value is <strong id="rds_02_0051__b1284293775511">5432</strong>. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0051__uicontrol1014672641817"><b>Overview</b></span> page of the DB instance. The port number can be found in the <span class="uicontrol" id="rds_02_0051__uicontrol484313795510"><b>Database Port</b></span> field in the <span class="uicontrol" id="rds_02_0051__uicontrol67151316187"><b>Connectivity</b></span> area.</p>
<td class="cellrowborder" valign="top" width="73%" headers="mcps1.3.4.2.6.2.2.2.3.1.2 "><p id="rds_02_0051__p18185115611217">Database port in use. The default value is <strong id="rds_02_0051__b1284293775511">5432</strong>. To obtain this parameter, go to the <span class="uicontrol" id="rds_02_0051__uicontrol102081209355"><b>Summary</b></span> page of the DB instance. The port number can be found in the <span class="uicontrol" id="rds_02_0051__uicontrol484313795510"><b>Database Port</b></span> field in the <span class="uicontrol" id="rds_02_0051__uicontrol67151316187"><b>Connectivity</b></span> area.</p>
</td>
</tr>
<tr id="rds_02_0051__row15185155621219"><td class="cellrowborder" valign="top" width="27%" headers="mcps1.3.4.2.6.2.2.2.3.1.1 "><p id="rds_02_0051__p1418511561126"><em id="rds_02_0051__i166765404131">&lt;database&gt;</em></p>

View File

@ -10,17 +10,17 @@
</li></ol>
</div>
<div class="section" id="rds_03_0007__section8112152217539"><h4 class="sectiontitle">Non-SSL Connection</h4><ol id="rds_03_0007__ol6899121464513"><li id="rds_03_0007__li159041314144518"><span>Start SQL Server Management Studio.</span></li><li id="rds_03_0007__li18907114144515"><span>Choose <strong id="rds_03_0007__b832283413289">Connect</strong> &gt; <strong id="rds_03_0007__b193221134152810">Database Engine</strong>. In the displayed dialog box, enter login information.</span><p><div class="fignone" id="rds_03_0007__fig99151514124518"><span class="figcap"><b>Figure 1 </b>Connecting to the server</span><br><span><img id="rds_03_0007__image1891951419454" src="en-us_image_0000001191211449.png"></span></div>
<ul id="rds_03_0007__ul1691911434510"><li id="rds_03_0007__li10920181414513"><strong id="rds_03_0007__b146943475614">Server name</strong>: indicates the IP address and port of the DB instance. Use a comma (,) to separate them. For example: x.x.x.x,8080.<ul id="rds_03_0007__ul19922614154519"><li id="rds_03_0007__li1292441416452">The IP address is the EIP that has been bound to the DB instance.</li><li id="rds_03_0007__li79301714124511">The port is the database port in the <strong id="rds_03_0007__b185961654145811">Connectivity</strong> area on the <strong id="rds_03_0007__b42961941162010">Overview</strong> page of the DB instance.</li></ul>
<ul id="rds_03_0007__ul1691911434510"><li id="rds_03_0007__li10920181414513"><strong id="rds_03_0007__b146943475614">Server name</strong>: indicates the IP address and port of the DB instance. Use a comma (,) to separate them. For example: x.x.x.x,8080.<ul id="rds_03_0007__ul19922614154519"><li id="rds_03_0007__li1292441416452">The IP address is the EIP that has been bound to the DB instance.</li><li id="rds_03_0007__li79301714124511">The port is the database port in the <strong id="rds_03_0007__b185961654145811">Connectivity</strong> area on the <strong id="rds_03_0007__b56881638113518">Summary</strong> page of the DB instance.</li></ul>
</li><li id="rds_03_0007__li1093720142451"><strong id="rds_03_0007__b842352706112352">Authentication</strong>: indicates the authentication mode. Select <strong id="rds_03_0007__b842352706112627">SQL Server Authentication</strong>.</li><li id="rds_03_0007__li11939101464515"><strong id="rds_03_0007__b842352706212721">Login</strong>: indicates the RDS database username. The default administrator is <strong id="rds_03_0007__b1158023303104748">rdsuser</strong>.</li><li id="rds_03_0007__li1794101416457"><strong id="rds_03_0007__b842352706171010">Password</strong>: indicates the password of the RDS database username.</li></ul>
</p></li><li id="rds_03_0007__li139521614134510"><span>Click <strong id="rds_03_0007__b842352706112844">Connect</strong> to connect to the DB instance.</span><p><div class="note" id="rds_03_0007__note1536635324218"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><p id="rds_03_0007__p14465173181314">If the connection fails, ensure that preparations have been correctly made in <a href="#rds_03_0007__section367520762117">Preparations</a> and try again.</p>
</div></div>
</p></li></ol>
</div>
<div class="section" id="rds_03_0007__section335618164205"><h4 class="sectiontitle">SSL Connection</h4><ol id="rds_03_0007__ol9899222162618"><li id="rds_03_0007__li1519225152811"><span>Download the SSL root certificate and then upload it.</span><p><ol type="a" id="rds_03_0007__ol2176152722817"><li id="rds_03_0007__li148993221263">In the <span class="uicontrol" id="rds_03_0007__uicontrol1473416716"><b>Basic Information</b></span> area on the <strong id="rds_03_0007__b0737134513236">Overview</strong> page, click <strong id="rds_03_0007__b5303154213247">Download</strong> in the <strong id="rds_03_0007__b54749120711">SSL</strong> field to download the root certificate or certificate bundle.</li><li id="rds_03_0007__li289920228268">Upload the root certificate to the <span id="rds_03_0007__text1217121616487">ECS</span> to be connected to the DB instance.</li><li id="rds_03_0007__li5899192272610">Import the root certificate to the Windows OS on the <span id="rds_03_0007__text4496175673217">ECS</span>. For details, see <a href="rds_faq_0052.html">How Can I Import the Root Certificate to a Windows or Linux OS?</a><div class="note" id="rds_03_0007__note55991119113412"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><ul id="rds_03_0007__ul10599151913349"><li id="rds_03_0007__li10599121918349">Replace the old certificate before it expires to improve system security.</li><li id="rds_03_0007__li2599119163419">After you bind an EIP to a DB instance, you must reboot the instance for the SSL connection to take effect.</li></ul>
<div class="section" id="rds_03_0007__section335618164205"><h4 class="sectiontitle">SSL Connection</h4><ol id="rds_03_0007__ol9899222162618"><li id="rds_03_0007__li1519225152811"><span>Download the SSL root certificate and then upload it.</span><p><ol type="a" id="rds_03_0007__ol2176152722817"><li id="rds_03_0007__en-us_topic_0154555358_li2033132135913">On the <span class="uicontrol" id="rds_03_0007__uicontrol78051637184115"><b>Instances</b></span> page, click the target DB instance. Click <strong id="rds_03_0007__b79964467716">Download</strong> under <strong id="rds_03_0007__b7321729184510">SSL</strong> to download the Certificate Download package, and extract the root certificate ca.pem and bundle ca-bundle.pem from the package.</li><li id="rds_03_0007__li289920228268">Upload the root certificate to the <span id="rds_03_0007__text1217121616487">ECS</span> to be connected to the DB instance.</li><li id="rds_03_0007__li5899192272610">Import the root certificate to the Windows OS on the <span id="rds_03_0007__text4496175673217">ECS</span>. For details, see <a href="rds_faq_0052.html">How Can I Import the Root Certificate to a Windows or Linux OS?</a><div class="note" id="rds_03_0007__note55991119113412"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><ul id="rds_03_0007__ul10599151913349"><li id="rds_03_0007__li10599121918349">Replace the old certificate before it expires to improve system security.</li><li id="rds_03_0007__li2599119163419">After you bind an EIP to a DB instance, you must reboot the instance for the SSL connection to take effect.</li></ul>
</div></div>
</li></ol>
</p></li><li id="rds_03_0007__li12841133311271"><span>Start SQL Server Management Studio.</span></li><li id="rds_03_0007__li188418335274"><span>Choose <strong id="rds_03_0007__b14381622102811">Connect</strong> &gt; <strong id="rds_03_0007__b4438152282814">Database Engine</strong>. In the displayed dialog box, enter login information.</span><p><div class="fignone" id="rds_03_0007__fig1884118334272"><span class="figcap"><b>Figure 2 </b>Connecting to the server</span><br><span><img id="rds_03_0007__image12841133122712" src="en-us_image_0000001145051612.png"></span></div>
<ul id="rds_03_0007__ul18858113362710"><li id="rds_03_0007__li14858123317270"><strong id="rds_03_0007__b1229182319114">Server name</strong>: indicates the IP address and port of the DB instance. Use a comma (,) to separate them. For example: x.x.x.x,8080.<ul id="rds_03_0007__ul15858933192717"><li id="rds_03_0007__li685818331274">The IP address is the EIP that has been bound to the DB instance.</li><li id="rds_03_0007__li18581033152717">The port is the database port in the <strong id="rds_03_0007__b1785833317252">Connectivity</strong> area on the <strong id="rds_03_0007__b15213017252">Overview</strong> page of the DB instance.</li></ul>
<ul id="rds_03_0007__ul18858113362710"><li id="rds_03_0007__li14858123317270"><strong id="rds_03_0007__b1229182319114">Server name</strong>: indicates the IP address and port of the DB instance. Use a comma (,) to separate them. For example: x.x.x.x,8080.<ul id="rds_03_0007__ul15858933192717"><li id="rds_03_0007__li685818331274">The IP address is the EIP that has been bound to the DB instance.</li><li id="rds_03_0007__li18581033152717">The port is the database port in the <strong id="rds_03_0007__b1785833317252">Connectivity</strong> area on the <strong id="rds_03_0007__b1788864123520">Summary</strong> page of the DB instance.</li></ul>
</li><li id="rds_03_0007__li148585337279"><strong id="rds_03_0007__b165752461115">Authentication</strong>: indicates the authentication mode. Select <strong id="rds_03_0007__b057714612113">SQL Server Authentication</strong>.</li><li id="rds_03_0007__li1385883315279"><strong id="rds_03_0007__b162891440">Login</strong>: indicates the RDS database username. The default administrator is <strong id="rds_03_0007__b1636886129">rdsuser</strong>.</li><li id="rds_03_0007__li20874173372710"><strong id="rds_03_0007__b1365580043">Password</strong>: indicates the password of the RDS database username.</li></ul>
</p></li><li id="rds_03_0007__li47772152307"><span>On the <strong id="rds_03_0007__b71488248218">Connection Properties</strong> page, enter related parameters and select <strong id="rds_03_0007__b1374924918217">Encrypt connection</strong> to enable SSL encryption. (By default, <strong id="rds_03_0007__b8687133311318">Encrypt connection</strong> is not selected. You need to select it manually.)</span><p><div class="fignone" id="rds_03_0007__fig2077710158306"><span class="figcap"><b>Figure 3 </b>Connection properties</span><br><span><img id="rds_03_0007__image207770150305" src="en-us_image_0000001145051614.jpg"></span></div>
</p></li><li id="rds_03_0007__li987483316278"><span>Click <strong id="rds_03_0007__b228212764">Connect</strong> to connect to the DB instance.</span><p><div class="note" id="rds_03_0007__note187416330276"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><p id="rds_03_0007__p3874153342711">If the connection fails, ensure that preparations have been correctly made in <a href="#rds_03_0007__section367520762117">Preparations</a> and try again.</p>

View File

@ -42,7 +42,7 @@
<tr id="rds_03_0011__row1015338917"><td class="cellrowborder" valign="top" width="21%" headers="mcps1.3.4.2.5.2.2.2.3.1.1 "><p id="rds_03_0011__p3335747191620">Storage Type</p>
</td>
<td class="cellrowborder" valign="top" width="79%" headers="mcps1.3.4.2.5.2.2.2.3.1.2 "><p id="rds_03_0011__p19221645726">Determines the DB instance read/write speed. The higher the maximum throughput is, the higher the DB instance read/write speed can be.</p>
<ul id="rds_03_0011__ul1292212451520"><li id="rds_03_0011__li189226451523"><strong id="rds_03_0011__b292214454215">Cloud SSD</strong>: cloud drives used to decouple storage from compute. The maximum throughput is 350 MB/s.</li><li id="rds_03_0011__li292214451324"><strong id="rds_03_0011__b199221045621">Extreme SSD</strong>: uses 25GE network and RDMA technologies to provide you with up to 1,000 MB/s throughput per disk and sub-millisecond latency.</li></ul>
<ul id="rds_03_0011__ul1292212451520"><li id="rds_03_0011__li189226451523"><strong id="rds_03_0011__b292214454215">Cloud SSD</strong>: cloud drives used to decouple storage from compute. The maximum throughput is 350 MB/s.</li><li id="rds_03_0011__li292214451324"><strong id="rds_03_0011__b199221045621">Extreme SSD</strong>: uses 25GE network and RDMA technologies to provide you with up to 1,000 MB/s throughput per disk and sub-millisecond latency.</li><li id="rds_03_0011__li89539591842"><strong id="rds_03_0011__b5120123168">Flexible SSD</strong>: decouples capacity from performance and allows for tailored IOPS and throughput for your business requirements. This storage type is ideal for mainstream interactive applications that require high performance and low latency.</li></ul>
</td>
</tr>
<tr id="rds_03_0011__row986226171118"><td class="cellrowborder" valign="top" width="21%" headers="mcps1.3.4.2.5.2.2.2.3.1.1 "><p id="rds_03_0011__p5363100191215">AZ</p>
@ -73,6 +73,18 @@
<p id="rds_03_0011__p5480144445014">By default, storage space of a read replica is the same as that of the primary DB instance.</p>
</td>
</tr>
<tr id="rds_03_0011__row1688123815143"><td class="cellrowborder" valign="top" width="21%" headers="mcps1.3.4.2.5.2.3.2.3.1.1 "><p id="rds_03_0011__p957810411419">IOPS</p>
</td>
<td class="cellrowborder" valign="top" width="79%" headers="mcps1.3.4.2.5.2.3.2.3.1.2 "><p id="rds_03_0011__p1479043414912">This parameter is required when the storage type is <strong id="rds_03_0011__b59745445916">Flexible SSD</strong>.</p>
<p id="rds_03_0011__p164560229108">The value range is from 3000 to 128000. The IOPS is limited by the disk size and must be no greater than 500 times the disk capacity.</p>
</td>
</tr>
<tr id="rds_03_0011__row69131337141416"><td class="cellrowborder" valign="top" width="21%" headers="mcps1.3.4.2.5.2.3.2.3.1.1 "><p id="rds_03_0011__p1398311411817">Throughput</p>
</td>
<td class="cellrowborder" valign="top" width="79%" headers="mcps1.3.4.2.5.2.3.2.3.1.2 "><p id="rds_03_0011__p33333381693">This parameter is required when the storage type is <strong id="rds_03_0011__b1080524813911">Flexible SSD</strong>.</p>
<p id="rds_03_0011__p2407414152616">The value ranges from 125 to 1000 (in MiB/s) and must also be no greater than the IOPS divided by 4.</p>
</td>
</tr>
<tr id="rds_03_0011__row1745919202459"><td class="cellrowborder" valign="top" width="21%" headers="mcps1.3.4.2.5.2.3.2.3.1.1 "><p id="rds_03_0011__p595744141914">Disk Encryption</p>
</td>
<td class="cellrowborder" valign="top" width="79%" headers="mcps1.3.4.2.5.2.3.2.3.1.2 "><p id="rds_03_0011__p124855615294">Enabling disk encryption enhances data security but reduces the database's read and write performance by 5%.</p>

View File

@ -14,17 +14,17 @@
</li></ol>
</div>
<div class="section" id="rds_03_0013__section856417141010"><h4 class="sectiontitle">Non-SSL Connection</h4><ol id="rds_03_0013__ol15778193119498"><li id="rds_03_0013__li20778143117491"><span>Log in to the <span id="rds_03_0013__text33297329457">ECS</span> or device that can access RDS.</span></li><li id="rds_03_0013__li17794103114914"><span>Start SQL Server Management Studio.</span></li><li id="rds_03_0013__li279412319493"><span>Choose <strong id="rds_03_0013__b1721412350249">Connect</strong> &gt; <strong id="rds_03_0013__b18152338182415">Database Engine</strong>. In the displayed dialog box, enter login information.</span><p><div class="fignone" id="rds_03_0013__fig15808171610311"><span class="figcap"><b>Figure 1 </b>Connecting to the server</span><br><span><img id="rds_03_0013__image128083161036" src="en-us_image_0000001191131309.png"></span></div>
<ul id="rds_03_0013__ul67941931174915"><li id="rds_03_0013__li10531101513548"><strong id="rds_03_0013__b375275221212">Server name</strong>: indicates the IP address and port of the DB instance. Use a comma (,) to separate them. For example: x.x.x.x,8080.<ul id="rds_03_0013__ul1284022734712"><li id="rds_03_0013__li15843192734710">The IP address is the floating IP address in the <strong id="rds_03_0013__b12454642115">Connectivity</strong> area on the <strong id="rds_03_0013__b42961941162010">Overview</strong> page of the DB instance.</li><li id="rds_03_0013__li1385017279477">The port is the database port in the <strong id="rds_03_0013__b202411113216">Connectivity</strong> area on the <strong id="rds_03_0013__b796254722018">Overview</strong> page of the DB instance.</li></ul>
<ul id="rds_03_0013__ul67941931174915"><li id="rds_03_0013__li10531101513548"><strong id="rds_03_0013__b375275221212">Server name</strong>: indicates the IP address and port of the DB instance. Use a comma (,) to separate them. For example: x.x.x.x,8080.<ul id="rds_03_0013__ul1284022734712"><li id="rds_03_0013__li15843192734710">The IP address is the floating IP address in the <strong id="rds_03_0013__b12454642115">Connectivity</strong> area on the <strong id="rds_03_0013__b2096062743511">Summary</strong> page of the DB instance.</li><li id="rds_03_0013__li1385017279477">The port is the database port in the <strong id="rds_03_0013__b202411113216">Connectivity</strong> area on the <strong id="rds_03_0013__b240929153510">Summary</strong> page of the DB instance.</li></ul>
</li><li id="rds_03_0013__li9809131164915"><strong id="rds_03_0013__b189724917142">Authentication</strong>: indicates the authentication mode. Select <strong id="rds_03_0013__b119919498146">SQL Server Authentication</strong>.</li><li id="rds_03_0013__li2809113134917"><strong id="rds_03_0013__b842352706212721">Login</strong>: indicates the RDS database username. The default administrator is <strong id="rds_03_0013__b1158023303104748">rdsuser</strong>.</li><li id="rds_03_0013__li880933115492"><strong id="rds_03_0013__b842352706171010">Password</strong>: indicates the password of the RDS database username.</li></ul>
</p></li><li id="rds_03_0013__li3809153184912"><span>Click <strong id="rds_03_0013__b842352706112844">Connect</strong> to connect to the DB instance.</span><p><div class="note" id="rds_03_0013__note1536635324218"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><p id="rds_03_0013__p14465173181314">If the connection fails, ensure that preparations have been correctly made in <a href="#rds_03_0013__section142821253295">Preparations</a> and try again.</p>
</div></div>
</p></li></ol>
</div>
<div class="section" id="rds_03_0013__section664784744419"><h4 class="sectiontitle">SSL Connection</h4><ol id="rds_03_0013__ol9899222162618"><li id="rds_03_0013__li1519225152811"><span>Download the SSL root certificate and then upload it.</span><p><ol type="a" id="rds_03_0013__ol2176152722817"><li id="rds_03_0013__li148993221263">On the <strong id="rds_03_0013__b1791374052212">Instances</strong> page, click the target DB instance. In the <strong id="rds_03_0013__b11913840112219">Basic Information</strong> area on the <strong id="rds_03_0013__b1791324012210">Overview</strong> page, click <strong id="rds_03_0013__b149131040182210">Download</strong> in the <strong id="rds_03_0013__b17913134022217">SSL</strong>field to download the root certificate or certificate bundle.</li><li id="rds_03_0013__li289920228268">Upload the root certificate to the <span id="rds_03_0013__text4458445194514">ECS</span> or save it to the device to be connected to the DB instance.</li><li id="rds_03_0013__li5899192272610">Import the root certificate into the Windows OS on the <span id="rds_03_0013__text143571512459">ECS</span>. For details, see <a href="rds_faq_0052.html">How Can I Import the Root Certificate to a Windows or Linux OS?</a><div class="note" id="rds_03_0013__note55991119113412"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><ul id="rds_03_0013__ul10599151913349"><li id="rds_03_0013__li10599121918349">Replace the old certificate before it expires to improve system security.</li><li id="rds_03_0013__li2599119163419">After you bind an EIP to a DB instance, you must reboot the instance for the SSL connection to take effect.</li></ul>
<div class="section" id="rds_03_0013__section664784744419"><h4 class="sectiontitle">SSL Connection</h4><ol id="rds_03_0013__ol9899222162618"><li id="rds_03_0013__li1519225152811"><span>Download the SSL root certificate and then upload it.</span><p><ol type="a" id="rds_03_0013__ol2176152722817"><li id="rds_03_0013__en-us_topic_0154555358_li2033132135913">On the <span class="uicontrol" id="rds_03_0013__uicontrol78051637184115"><b>Instances</b></span> page, click the target DB instance. Click <strong id="rds_03_0013__b79964467716">Download</strong> under <strong id="rds_03_0013__b7321729184510">SSL</strong> to download the Certificate Download package, and extract the root certificate ca.pem and bundle ca-bundle.pem from the package.</li><li id="rds_03_0013__li289920228268">Upload the root certificate to the <span id="rds_03_0013__text4458445194514">ECS</span> or save it to the device to be connected to the DB instance.</li><li id="rds_03_0013__li5899192272610">Import the root certificate into the Windows OS on the <span id="rds_03_0013__text143571512459">ECS</span>. For details, see <a href="rds_faq_0052.html">How Can I Import the Root Certificate to a Windows or Linux OS?</a><div class="note" id="rds_03_0013__note55991119113412"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><ul id="rds_03_0013__ul10599151913349"><li id="rds_03_0013__li10599121918349">Replace the old certificate before it expires to improve system security.</li><li id="rds_03_0013__li2599119163419">After you bind an EIP to a DB instance, you must reboot the instance for the SSL connection to take effect.</li></ul>
</div></div>
</li></ol>
</p></li><li id="rds_03_0013__li12841133311271"><span>Start SQL Server Management Studio.</span></li><li id="rds_03_0013__li188418335274"><span>Choose <strong id="rds_03_0013__b559317135253">Connect</strong> &gt; <strong id="rds_03_0013__b359481314257">Database Engine</strong>. In the displayed dialog box, enter login information.</span><p><div class="fignone" id="rds_03_0013__fig1884118334272"><span class="figcap"><b>Figure 2 </b>Connecting to the server</span><br><span><img id="rds_03_0013__image12841133122712" src="en-us_image_0000001191211463.png"></span></div>
<ul id="rds_03_0013__ul18858113362710"><li id="rds_03_0013__li148585337279"><strong id="rds_03_0013__b18493839191613">Server name</strong>: indicates the IP address and port of the DB instance. Use a comma (,) to separate them. For example: x.x.x.x,8080.<ul id="rds_03_0013__ul11743433164610"><li id="rds_03_0013__li107431033114618">The IP address is the floating IP address in the <strong id="rds_03_0013__b2383192282216">Connectivity</strong> area on the <strong id="rds_03_0013__b54184122218">Overview</strong> page of the DB instance.</li><li id="rds_03_0013__li274313311464">The port is the database port in the <strong id="rds_03_0013__b11509182942220">Connectivity</strong> area on the <strong id="rds_03_0013__b92341343132218">Overview</strong> page of the DB instance.</li></ul>
<ul id="rds_03_0013__ul18858113362710"><li id="rds_03_0013__li148585337279"><strong id="rds_03_0013__b18493839191613">Server name</strong>: indicates the IP address and port of the DB instance. Use a comma (,) to separate them. For example: x.x.x.x,8080.<ul id="rds_03_0013__ul11743433164610"><li id="rds_03_0013__li107431033114618">The IP address is the floating IP address in the <strong id="rds_03_0013__b2383192282216">Connectivity</strong> area on the <strong id="rds_03_0013__b624883310357">Summary</strong> page of the DB instance.</li><li id="rds_03_0013__li274313311464">The port is the database port in the <strong id="rds_03_0013__b11509182942220">Connectivity</strong> area on the <strong id="rds_03_0013__b155218343353">Summary</strong> page of the DB instance.</li></ul>
</li><li id="rds_03_0013__li180617554465"><strong id="rds_03_0013__b842352706112352">Authentication</strong>: indicates the authentication mode. Select <strong id="rds_03_0013__b842352706112627">SQL Server Authentication</strong>.</li><li id="rds_03_0013__li1385883315279"><strong id="rds_03_0013__b551814951">Login</strong>: indicates the RDS database username. The default administrator is <strong id="rds_03_0013__b123647398">rdsuser</strong>.</li><li id="rds_03_0013__li20874173372710"><strong id="rds_03_0013__b1534313236">Password</strong>: indicates the password of the RDS database username.</li></ul>
</p></li><li id="rds_03_0013__li47772152307"><span>On the <strong id="rds_03_0013__b167574181713">Connection Properties</strong> page, enter related parameters and select <strong id="rds_03_0013__b1759111151720">Encrypt connection</strong> to enable SSL encryption. (By default, <strong id="rds_03_0013__b5759131121714">Encrypt connection</strong> is not selected. You need to select it manually.)</span><p><div class="fignone" id="rds_03_0013__fig2077710158306"><span class="figcap"><b>Figure 3 </b>Connection properties</span><br><span><img id="rds_03_0013__image207770150305" src="en-us_image_0000001191211461.jpg"></span></div>
</p></li><li id="rds_03_0013__li987483316278"><span>Click <strong id="rds_03_0013__b1860018918">Connect</strong> to connect to the DB instance.</span><p><div class="note" id="rds_03_0013__note187416330276"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><p id="rds_03_0013__p3874153342711">If the connection fails, ensure that preparations have been correctly made in <a href="#rds_03_0013__section142821253295">Preparations</a> and try again.</p>

View File

@ -49,7 +49,7 @@
<tr id="rds_03_0065__row9623103913316"><td class="cellrowborder" valign="top" width="19.830000000000002%" headers="mcps1.3.2.2.5.2.2.2.3.1.1 "><p id="rds_03_0065__p9688125593314">Storage Type</p>
</td>
<td class="cellrowborder" valign="top" width="80.17%" headers="mcps1.3.2.2.5.2.2.2.3.1.2 "><p id="rds_03_0065__p9134111911423">Determines the DB instance read/write speed. The higher the maximum throughput is, the higher the DB instance read/write speed can be.</p>
<ul id="rds_03_0065__ul913441964211"><li id="rds_03_0065__li131357197425"><strong id="rds_03_0065__b9135619184218">Cloud SSD</strong>: cloud drives used to decouple storage from compute. The maximum throughput is 350 MB/s.</li><li id="rds_03_0065__li4135319124214"><strong id="rds_03_0065__b9135161914216">Extreme SSD</strong>: uses 25GE network and RDMA technologies to provide you with up to 1,000 MB/s throughput per disk and sub-millisecond latency.</li></ul>
<ul id="rds_03_0065__ul913441964211"><li id="rds_03_0065__li131357197425"><strong id="rds_03_0065__b9135619184218">Cloud SSD</strong>: cloud drives used to decouple storage from compute. The maximum throughput is 350 MB/s.</li><li id="rds_03_0065__li4135319124214"><strong id="rds_03_0065__b9135161914216">Extreme SSD</strong>: uses 25GE network and RDMA technologies to provide you with up to 1,000 MB/s throughput per disk and sub-millisecond latency.</li><li id="rds_03_0065__li89539591842"><strong id="rds_03_0065__b5120123168">Flexible SSD</strong>: decouples capacity from performance and allows for tailored IOPS and throughput for your business requirements. This storage type is ideal for mainstream interactive applications that require high performance and low latency.</li></ul>
</td>
</tr>
<tr id="rds_03_0065__row1675018111332"><td class="cellrowborder" valign="top" width="19.830000000000002%" headers="mcps1.3.2.2.5.2.2.2.3.1.1 "><p id="rds_03_0065__p112255955412">Primary AZ/Standby AZ</p>
@ -78,15 +78,27 @@
<tr id="rds_03_0065__row1467616204445"><td class="cellrowborder" valign="top" width="20%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_03_0065__p176763206449">Storage Space</p>
</td>
<td class="cellrowborder" valign="top" width="80%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><p id="rds_03_0065__p12950023171218">Contains the file system overhead required for inode, reserved block, and database operation. Storage space can range in size from 40 GB to 4,000 GB and can be scaled up only by a multiple of 10 GB.</p>
<p id="rds_03_0065__p13797182010276">After a DB instance is created, you can scale up its storage space. For details, see <a href="rds_pg_scale_cluster.html">Scaling up Storage Space</a>.</p>
<p id="rds_03_0065__p13797182010276">After a DB instance is created, you can scale up its storage space. For details, see <a href="rds_pg_scale_cluster.html">Scaling Up Storage Space</a>.</p>
</td>
</tr>
<tr id="rds_03_0065__row122821257113112"><td class="cellrowborder" valign="top" width="20%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_03_0065__p78026222713">Enable autoscaling</p>
</td>
<td class="cellrowborder" valign="top" width="80%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><div class="p" id="rds_03_0065__p15855172395212">If the storage type is cloud SSD or extreme SSD, you can enable storage autoscaling. When the available storage drops to a specified threshold, autoscaling is triggered.<ul id="rds_03_0065__ul168552237522"><li id="rds_03_0065__li4855112335216"><strong id="rds_03_0065__b17855142345212">Enable Storage Autoscaling</strong>: If you select this option, storage autoscaling is enabled.</li><li id="rds_03_0065__li10855102314528"><strong id="rds_03_0065__b18855192317528">Trigger If Available Storage Drops To</strong>: If the available storage drops to a specified threshold or 10 GB, autoscaling is triggered.</li><li id="rds_03_0065__li9855112335219"><strong id="rds_03_0065__b585502335218">Autoscaling Limit</strong>: The default value range is from 40 to 4000, in GB. The limit must be no less than the storage of the DB instance.</li></ul>
<td class="cellrowborder" valign="top" width="80%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><div class="p" id="rds_03_0065__p15855172395212">You can enable storage autoscaling. When the available storage drops to a specified threshold, autoscaling is triggered.<ul id="rds_03_0065__ul168552237522"><li id="rds_03_0065__li4855112335216"><strong id="rds_03_0065__b17855142345212">Enable Storage Autoscaling</strong>: If you select this option, storage autoscaling is enabled.</li><li id="rds_03_0065__li10855102314528"><strong id="rds_03_0065__b18855192317528">Trigger If Available Storage Drops To</strong>: If the available storage drops to a specified threshold or 10 GB, autoscaling is triggered.</li><li id="rds_03_0065__li9855112335219"><strong id="rds_03_0065__b585502335218">Autoscaling Limit</strong>: The default value range is from 40 to 4000, in GB. The limit must be no less than the storage of the DB instance.</li></ul>
</div>
</td>
</tr>
<tr id="rds_03_0065__row1176017413128"><td class="cellrowborder" valign="top" width="20%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_03_0065__p957810411419">IOPS</p>
</td>
<td class="cellrowborder" valign="top" width="80%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><p id="rds_03_0065__p1479043414912">This parameter is required when the storage type is <strong id="rds_03_0065__b59745445916">Flexible SSD</strong>.</p>
<p id="rds_03_0065__p164560229108">The value range is from 3000 to 128000. The IOPS is limited by the disk size and must be no greater than 500 times the disk capacity.</p>
</td>
</tr>
<tr id="rds_03_0065__row72619520123"><td class="cellrowborder" valign="top" width="20%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_03_0065__p1398311411817">Throughput</p>
</td>
<td class="cellrowborder" valign="top" width="80%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><p id="rds_03_0065__p33333381693">This parameter is required when the storage type is <strong id="rds_03_0065__b1080524813911">Flexible SSD</strong>.</p>
<p id="rds_03_0065__p2407414152616">The value ranges from 125 to 1000 (in MiB/s) and must also be no greater than the IOPS divided by 4.</p>
</td>
</tr>
<tr id="rds_03_0065__row3377101065014"><td class="cellrowborder" valign="top" width="20%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_03_0065__p119341314506">Disk Encryption</p>
</td>
<td class="cellrowborder" valign="top" width="80%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><p id="rds_03_0065__p124855615294">Enabling disk encryption enhances data security but reduces the database's read and write performance by 5%.</p>

View File

@ -1,11 +1,29 @@
<a name="rds_03_0100"></a><a name="rds_03_0100"></a>
<h1 class="topictitle1">Downloading a Binlog Backup File</h1>
<div id="body8662426"><div class="section" id="rds_03_0100__en-us_topic_0192954021_sb7b1b629a51e4229a30150ae0d342811"><h4 class="sectiontitle">Scenarios</h4><p id="rds_03_0100__en-us_topic_0192954021_p162931211195417">RDS for MySQL allows you to download <span class="keyword" id="rds_03_0100__en-us_topic_0192954021_keyword1283015485152">binlog backup files</span> to your client computer and use them to restore DB instances if necessary. </p>
<div id="body8662426"><div class="section" id="rds_03_0100__en-us_topic_0192954021_sb7b1b629a51e4229a30150ae0d342811"><h4 class="sectiontitle">Scenarios</h4><p id="rds_03_0100__en-us_topic_0192954021_p162931211195417">RDS for MySQL allows you to download <span class="keyword" id="rds_03_0100__en-us_topic_0192954021_keyword1283015485152">binlog backup files</span> to your client computer and use them to restore DB instances if necessary. For details, see <a href="#rds_03_0100__en-us_topic_0192954021_section61116810348">Downloading a Binlog Backup File</a> or <a href="#rds_03_0100__section625243344717">Downloading a Merged Binlog</a>.</p>
</div>
<div class="section" id="rds_03_0100__en-us_topic_0192954021_section61116810348"><h4 class="sectiontitle">Downloading a Binlog Backup File</h4><ol id="rds_03_0100__en-us_topic_0192954021_ol199521352103413"><li id="rds_03_0100__li17616348171"><span>Log in to the management console.</span></li><li id="rds_03_0100__li146168481712"><span>Click <span><img id="rds_03_0100__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_03_0100__li96167481711"><span>Click <strong id="rds_03_0100__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_03_0100__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_03_0100__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_03_0100__li5792135119812"><span>On the <span class="uicontrol" id="rds_03_0100__uicontrol231818312313"><b>Instances</b></span> page, click the target DB instance. The <strong id="rds_03_0100__b621141215153">Overview</strong> page is displayed.</span></li><li id="rds_03_0100__en-us_topic_0192954021_li204011436173612"><span>In the navigation pane on the left, choose <strong id="rds_03_0100__b483521719206">Backups &amp; Restorations</strong>. On the <strong id="rds_03_0100__b2431536132016">Binlog Backups</strong> page, locate the target backup to be downloaded and click <strong id="rds_03_0100__b1651614395466">Download</strong> in the <strong id="rds_03_0100__b2562164517165">Operation</strong> column.</span><p><p id="rds_03_0100__en-us_topic_0192954021_p1163116442915">You can also select the binlog backups to be downloaded and click <strong id="rds_03_0100__en-us_topic_0192954021_b19840741773">Download</strong> above the list.</p>
<div class="section" id="rds_03_0100__en-us_topic_0192954021_section61116810348"><a name="rds_03_0100__en-us_topic_0192954021_section61116810348"></a><a name="en-us_topic_0192954021_section61116810348"></a><h4 class="sectiontitle">Downloading a Binlog Backup File</h4><ol id="rds_03_0100__en-us_topic_0192954021_ol199521352103413"><li id="rds_03_0100__li17616348171"><span>Log in to the management console.</span></li><li id="rds_03_0100__li146168481712"><span>Click <span><img id="rds_03_0100__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_03_0100__li96167481711"><span>Click <strong id="rds_03_0100__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_03_0100__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_03_0100__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_03_0100__li5792135119812"><span>On the <span class="uicontrol" id="rds_03_0100__uicontrol231818312313"><b>Instances</b></span> page, click the target DB instance. The <strong id="rds_03_0100__b61201451142213">Summary</strong> page is displayed.</span></li><li id="rds_03_0100__en-us_topic_0192954021_li204011436173612"><span>In the navigation pane on the left, choose <strong id="rds_03_0100__b483521719206">Backups &amp; Restorations</strong>. On the <strong id="rds_03_0100__b2431536132016">Binlog Backups</strong> page, locate the target backup to be downloaded and click <strong id="rds_03_0100__b1651614395466">Download</strong> in the <strong id="rds_03_0100__b2562164517165">Operation</strong> column.</span><p><p id="rds_03_0100__en-us_topic_0192954021_p1163116442915">You can also select the binlog backups to be downloaded and click <strong id="rds_03_0100__en-us_topic_0192954021_b19840741773">Download</strong> above the list.</p>
</p></li><li id="rds_03_0100__en-us_topic_0192954021_li10983155417113"><span>After the download is complete, you can view the binlog backups locally.</span></li></ol>
</div>
<div class="section" id="rds_03_0100__section625243344717"><a name="rds_03_0100__section625243344717"></a><a name="section625243344717"></a><h4 class="sectiontitle">Downloading a Merged Binlog</h4><ol id="rds_03_0100__en-us_topic_0192954021_ol55701624174316"><li id="rds_03_0100__li183141510124810"><span>Log in to the management console.</span></li><li id="rds_03_0100__li1631401024813"><span>Click <span><img id="rds_03_0100__rds_modify_instance_name_en-us_topic_0192953815_image192529212293_1" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_03_0100__li1431431084815"><span>Click <strong id="rds_03_0100__rds_modify_instance_name_b171171523153019_1">Service List</strong>. Under <strong id="rds_03_0100__rds_modify_instance_name_b111722319302_1">Database</strong>, click <strong id="rds_03_0100__rds_modify_instance_name_b15118152363010_1">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_03_0100__li15496123223411"><span>On the <span class="uicontrol" id="rds_03_0100__uicontrol199094187393"><b>Instances</b></span> page, click the target DB instance. The <strong id="rds_03_0100__b6990175312213">Summary</strong> page is displayed.</span></li><li id="rds_03_0100__en-us_topic_0192954021_li259959134914"><span>In the navigation pane on the left, choose <strong id="rds_03_0100__b12860162015488">Backups &amp; Restorations</strong>. On the <strong id="rds_03_0100__b17538103712493">Merged Binlogs</strong> page, select a binlog time range and click <strong id="rds_03_0100__b18847123911508">Merge</strong>.</span><p><ul id="rds_03_0100__ul1155113411555"><li id="rds_03_0100__li12253143813558">The maximum time range for merging binlogs is 24 hours.</li><li id="rds_03_0100__li1455173485513">The available time range is consistent with the retention period you have set for the automated backups. For details about how to set the retention period, see <a href="rds_08_0004.html">Configuring an Intra-Region Backup Policy</a>.</li></ul>
</p></li><li id="rds_03_0100__en-us_topic_0192954021_li13425424123412"><span>During the merging process, the file status is <strong id="rds_03_0100__en-us_topic_0192954021_b1538719228232">Merging</strong>. Wait until the status becomes <strong id="rds_03_0100__en-us_topic_0192954021_b143533324235">Merged successfully</strong> and click <strong id="rds_03_0100__en-us_topic_0192954021_b8996244172315">Download</strong> in the <strong id="rds_03_0100__en-us_topic_0192954021_b169381248182314">Operation</strong> column.</span></li><li id="rds_03_0100__en-us_topic_0192954021_li169605331363"><span>In the displayed dialog box, select a download method.</span><p><div class="note" id="rds_03_0100__en-us_topic_0192954021_note1856713259447"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><p id="rds_03_0100__p128447480384">After the merged file is downloaded, delete it. The system will delete it after 30 days if you do not delete it yourself.</p>
<p id="rds_03_0100__p14612919193813">On the <span class="uicontrol" id="rds_03_0100__uicontrol120124818423"><b>Merged Binlogs</b></span> page, you can locate the target merged binlog to be deleted and click <strong id="rds_03_0100__b320117488423">Delete</strong> in the <strong id="rds_03_0100__b82011848174211">Operation</strong> column.</p>
</div></div>
<ul id="rds_03_0100__en-us_topic_0192954021_ul357432519447"><li id="rds_03_0100__en-us_topic_0192954021_li4573192519444"><strong id="rds_03_0100__en-us_topic_0192954021_b14463105312268">Use OBS Browser+</strong><ol type="a" id="rds_03_0100__en-us_topic_0192954021_ol145738254446"><li id="rds_03_0100__en-us_topic_0192954021_li75715254447">Download OBS Browser+ by following Step 1 provided on the download guide page.</li><li id="rds_03_0100__en-us_topic_0192954021_li1157119259448">Decompress and install OBS Browser+.</li><li id="rds_03_0100__en-us_topic_0192954021_li7572182514446">Log in to OBS Browser+ using the username provided in Step 2 on the download guide page.</li><li id="rds_03_0100__en-us_topic_0192954021_li05726251442">Add an external bucket using the bucket name provided in Step 2 on the download guide page.<p id="rds_03_0100__en-us_topic_0192954021_p19572132544411"><a name="rds_03_0100__en-us_topic_0192954021_li05726251442"></a><a name="en-us_topic_0192954021_li05726251442"></a>In the <strong id="rds_03_0100__b185431558151017">Add External Bucket</strong> dialog box of OBS Browser+, enter the bucket name provided in step 2 on the download guide page, and click <strong id="rds_03_0100__b12546135841014">OK</strong>.</p>
</li><li id="rds_03_0100__en-us_topic_0192954021_li557316254447">Download a merged binlog.<p id="rds_03_0100__en-us_topic_0192954021_p1457352510449"><a name="rds_03_0100__en-us_topic_0192954021_li557316254447"></a><a name="en-us_topic_0192954021_li557316254447"></a>On the OBS Browser+ page, click the bucket that you added. In the search box on the right of the object list page, enter the backup file name and start a search. In the search result, locate the target backup and click <span><img id="rds_03_0100__image147385019221" src="en-us_image_0000002557433943.png"></span> in the <strong id="rds_03_0100__b397283365017">Operation</strong> column.</p>
</li></ol>
</li><li id="rds_03_0100__en-us_topic_0192954021_li45731325164414"><p id="rds_03_0100__p7145182813362"><a name="rds_03_0100__en-us_topic_0192954021_li45731325164414"></a><a name="en-us_topic_0192954021_li45731325164414"></a><strong id="rds_03_0100__b5145132816365">Use Current Browser</strong></p>
<p id="rds_03_0100__en-us_topic_0192954021_li45731325164414p0">Download the merged binlog directly from the current browser.</p>
</li><li id="rds_03_0100__en-us_topic_0192954021_li1657416258448"><span class="uicontrol" id="rds_03_0100__uicontrol1123185251810"><b>Use Download URL</b></span><p id="rds_03_0100__en-us_topic_0192954021_p3573525114413">Click <span><img id="rds_03_0100__image11966174361714" src="en-us_image_0000002526234126.png"></span> to copy the URL within the validity period to download the merged binlog.</p>
<ul id="rds_03_0100__en-us_topic_0192954021_ul17574142574413"><li id="rds_03_0100__en-us_topic_0192954021_li15734253448">You can use other download tools to download the merged binlog.</li><li id="rds_03_0100__en-us_topic_0192954021_li5574172554417">You can also run the following command to download the merged binlog:<p id="rds_03_0100__en-us_topic_0192954021_p1157412519445"><a name="rds_03_0100__en-us_topic_0192954021_li5574172554417"></a><a name="en-us_topic_0192954021_li5574172554417"></a><strong id="rds_03_0100__en-us_topic_0192954021_b357452518447">wget -O</strong> <em id="rds_03_0100__en-us_topic_0192954021_i657462515448">FILE_NAME</em> <strong id="rds_03_0100__en-us_topic_0192954021_b125741425144415">--no-check-certificate</strong> <strong id="rds_03_0100__en-us_topic_0192954021_b17574425204412">"</strong><em id="rds_03_0100__en-us_topic_0192954021_i95742256449">DOWNLOAD_URL</em><strong id="rds_03_0100__en-us_topic_0192954021_b5574162544419">"</strong></p>
<p id="rds_03_0100__en-us_topic_0192954021_p1657418255447">Variables in the commands are as follows:</p>
<p id="rds_03_0100__en-us_topic_0192954021_p185741225164416"><em id="rds_03_0100__en-us_topic_0192954021_i1957482564412">FILE_NAME</em>: indicates the new name of the merged binlog file. The original backup file name may be too long and exceed the maximum characters allowed by the client file system. You are advised to use the <strong id="rds_03_0100__b69374422210">-O</strong> argument with wget to rename the backup file.</p>
<p id="rds_03_0100__en-us_topic_0192954021_p9574625174417"><em id="rds_03_0100__en-us_topic_0192954021_i1757482518444">DOWNLOAD_URL</em>: indicates the location of the merged binlog to be downloaded. If the location contains special characters, escape is required.</p>
</li></ul>
</li></ul>
</p></li></ol>
</div>
</div>
<div>
<div class="familylinks">

View File

@ -49,7 +49,7 @@
<tr id="rds_04_0061__row11481114183410"><td class="cellrowborder" valign="top" width="24%" headers="mcps1.3.2.2.5.2.2.2.3.1.1 "><p id="rds_04_0061__p26141545344">Storage Type</p>
</td>
<td class="cellrowborder" valign="top" width="76%" headers="mcps1.3.2.2.5.2.2.2.3.1.2 "><p id="rds_04_0061__p19221645726">Determines the DB instance read/write speed. The higher the maximum throughput is, the higher the DB instance read/write speed can be.</p>
<ul id="rds_04_0061__ul1292212451520"><li id="rds_04_0061__li189226451523"><strong id="rds_04_0061__b292214454215">Cloud SSD</strong>: cloud drives used to decouple storage from compute. The maximum throughput is 350 MB/s.</li><li id="rds_04_0061__li292214451324"><strong id="rds_04_0061__b199221045621">Extreme SSD</strong>: uses 25GE network and RDMA technologies to provide you with up to 1,000 MB/s throughput per disk and sub-millisecond latency.</li></ul>
<ul id="rds_04_0061__ul1292212451520"><li id="rds_04_0061__li189226451523"><strong id="rds_04_0061__b292214454215">Cloud SSD</strong>: cloud drives used to decouple storage from compute. The maximum throughput is 350 MB/s.</li><li id="rds_04_0061__li292214451324"><strong id="rds_04_0061__b199221045621">Extreme SSD</strong>: uses 25GE network and RDMA technologies to provide you with up to 1,000 MB/s throughput per disk and sub-millisecond latency.</li><li id="rds_04_0061__li89539591842"><strong id="rds_04_0061__b5120123168">Flexible SSD</strong>: decouples capacity from performance and allows for tailored IOPS and throughput for your business requirements. This storage type is ideal for mainstream interactive applications that require high performance and low latency.</li></ul>
</td>
</tr>
<tr id="rds_04_0061__row750212335314"><td class="cellrowborder" valign="top" width="24%" headers="mcps1.3.2.2.5.2.2.2.3.1.1 "><p id="rds_04_0061__p112255955412">Primary AZ/Standby AZ</p>
@ -78,7 +78,7 @@
<tr id="rds_04_0061__row363084061415"><td class="cellrowborder" valign="top" width="19.74%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_04_0061__p126303409148">Storage Space</p>
</td>
<td class="cellrowborder" valign="top" width="80.25999999999999%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><p id="rds_04_0061__p177851720184018">Contains the file system overhead required for inode, reserved block, and database operation. Storage space can range in size from 40 GB to 4,000 GB and can be scaled up only by a multiple of 10 GB.</p>
<p id="rds_04_0061__p13797182010276">After a DB instance is created, you can scale up its storage space. For details, see section <a href="rds_sqlserver_scale_cluster.html">Scaling up Storage Space</a>.</p>
<p id="rds_04_0061__p13797182010276">After a DB instance is created, you can scale up its storage space. For details, see section <a href="rds_sqlserver_scale_cluster.html">Scaling Up Storage Space</a>.</p>
</td>
</tr>
<tr id="rds_04_0061__row10653108405"><td class="cellrowborder" valign="top" width="19.74%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_04_0061__p78026222713">Enable autoscaling</p>
@ -87,6 +87,18 @@
</div>
</td>
</tr>
<tr id="rds_04_0061__row5317525120"><td class="cellrowborder" valign="top" width="19.74%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_04_0061__p957810411419">IOPS</p>
</td>
<td class="cellrowborder" valign="top" width="80.25999999999999%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><p id="rds_04_0061__p1479043414912">This parameter is required when the storage type is <strong id="rds_04_0061__b59745445916">Flexible SSD</strong>.</p>
<p id="rds_04_0061__p164560229108">The value range is from 3000 to 128000. The IOPS is limited by the disk size and must be no greater than 500 times the disk capacity.</p>
</td>
</tr>
<tr id="rds_04_0061__row186272519123"><td class="cellrowborder" valign="top" width="19.74%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_04_0061__p1398311411817">Throughput</p>
</td>
<td class="cellrowborder" valign="top" width="80.25999999999999%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><p id="rds_04_0061__p33333381693">This parameter is required when the storage type is <strong id="rds_04_0061__b1080524813911">Flexible SSD</strong>.</p>
<p id="rds_04_0061__p2407414152616">The value ranges from 125 to 1000 (in MiB/s) and must also be no greater than the IOPS divided by 4.</p>
</td>
</tr>
<tr id="rds_04_0061__row121651133419"><td class="cellrowborder" valign="top" width="19.74%" headers="mcps1.3.2.2.5.2.3.2.3.1.1 "><p id="rds_04_0061__p438435219119">Disk Encryption</p>
</td>
<td class="cellrowborder" valign="top" width="80.25999999999999%" headers="mcps1.3.2.2.5.2.3.2.3.1.2 "><p id="rds_04_0061__p124855615294">Enabling disk encryption enhances data security but reduces the database's read and write performance by 5%.</p>

View File

@ -18,7 +18,7 @@
</li>
<li class="ulchildlink"><strong><a href="en-us_topic_scale_rds.html">Changing a DB Instance Class</a></strong><br>
</li>
<li class="ulchildlink"><strong><a href="en-us_topic_scale_cluster.html">Scaling up Storage Space</a></strong><br>
<li class="ulchildlink"><strong><a href="en-us_topic_scale_cluster.html">Scaling Up Storage Space</a></strong><br>
</li>
<li class="ulchildlink"><strong><a href="rds_05_0039.html">Storage Autoscaling</a></strong><br>
</li>

View File

@ -7,7 +7,7 @@
</div>
<div class="section" id="rds_05_0003__section5641111512100"><h4 class="sectiontitle">Constraints</h4><ul id="rds_05_0003__ul2904522191111"><li id="rds_05_0003__li1990413225117">If the replication delay between primary and standby DB instances is longer than 300 seconds, the minor version cannot be upgraded.</li><li id="rds_05_0003__li1263687139">Minor versions cannot be upgraded for DB instances with abnormal nodes.</li><li id="rds_05_0003__li19614125151115">Currently, RDS for <span class="keyword" id="rds_05_0003__keyword1284113720598">MySQL</span> supports a maximum of 100,000 tables. If there are more than 100,000 tables, the minor version upgrade may fail.</li></ul>
</div>
<div class="section" id="rds_05_0003__section2059714272261"><h4 class="sectiontitle">Procedure</h4><ol id="rds_05_0003__ol6724161419271"><li id="rds_05_0003__li19861524513"><span>Log in to the management console.</span></li><li id="rds_05_0003__li38612219517"><span>Click <span><img id="rds_05_0003__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_05_0003__li586216213517"><span>Click <strong id="rds_05_0003__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_05_0003__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_05_0003__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_05_0003__li61161897172844"><span>On the <strong id="rds_05_0003__b18328163217598">Instances</strong> page, click the instance name to go to the <strong id="rds_05_0003__b1277511398414">Overview</strong> page.</span></li><li id="rds_05_0003__li9321516103414"><span>Under <strong id="rds_05_0003__b13210165340">DB Engine Version</strong>, click <strong id="rds_05_0003__b1132141633419">Upgrade Minor Version</strong>.</span></li><li id="rds_05_0003__li36398892172958"><span>In the displayed dialog box, select a scheduled time and click <strong id="rds_05_0003__b1016717367514">OK</strong>.</span></li></ol>
<div class="section" id="rds_05_0003__section2059714272261"><h4 class="sectiontitle">Procedure</h4><ol id="rds_05_0003__ol6724161419271"><li id="rds_05_0003__li19861524513"><span>Log in to the management console.</span></li><li id="rds_05_0003__li38612219517"><span>Click <span><img id="rds_05_0003__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_05_0003__li586216213517"><span>Click <strong id="rds_05_0003__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_05_0003__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_05_0003__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_05_0003__li61161897172844"><span>On the <strong id="rds_05_0003__b18328163217598">Instances</strong> page, click the instance name to go to the <strong id="rds_05_0003__b71451919133613">Summary</strong> page.</span></li><li id="rds_05_0003__li9321516103414"><span>Under <strong id="rds_05_0003__b13210165340">DB Engine Version</strong>, click <strong id="rds_05_0003__b1132141633419">Upgrade Minor Version</strong>.</span></li><li id="rds_05_0003__li36398892172958"><span>In the displayed dialog box, select a scheduled time and click <strong id="rds_05_0003__b1016717367514">OK</strong>.</span></li></ol>
</div>
</div>
<div>

View File

@ -9,7 +9,7 @@
</div>
<div class="section" id="rds_05_0024__section593175034210"><h4 class="sectiontitle">Changing a Floating IP Address</h4><p id="rds_05_0024__p154361752114218">You can <span class="keyword" id="rds_05_0024__keyword1662013212288">change the floating IP address</span> of an existing DB instance.</p>
</div>
<ol id="rds_05_0024__ol10762913125018"><li id="rds_05_0024__li17616348171"><span>Log in to the management console.</span></li><li id="rds_05_0024__li146168481712"><span>Click <span><img id="rds_05_0024__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_05_0024__li96167481711"><span>Click <strong id="rds_05_0024__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_05_0024__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_05_0024__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_05_0024__li461813238517"><span>On the <strong id="rds_05_0024__b4323887426">Instances</strong> page, click the target DB instance name to go to the <strong id="rds_05_0024__b1711113404234">Overview</strong> page.</span></li><li id="rds_05_0024__li893551843716"><span>Under <strong id="rds_05_0024__b1143665315240">Floating IP Address</strong>, click <strong id="rds_05_0024__b0945114913241">Configure</strong>.</span></li><li id="rds_05_0024__li20205612185217"><span>In the displayed dialog box, check the number of in-use IP addresses. If the in-use IP addresses are less than 254, there are unused floating IP addresses.</span></li><li id="rds_05_0024__li24721645571"><span>Select an available IP address and click <strong id="rds_05_0024__b164371243105510">OK</strong>.</span><p><p id="rds_05_0024__p887320520579">An in-use IP address cannot be used as the new floating IP address of the DB instance.</p>
<ol id="rds_05_0024__ol10762913125018"><li id="rds_05_0024__li17616348171"><span>Log in to the management console.</span></li><li id="rds_05_0024__li146168481712"><span>Click <span><img id="rds_05_0024__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_05_0024__li96167481711"><span>Click <strong id="rds_05_0024__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_05_0024__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_05_0024__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_05_0024__li461813238517"><span>On the <strong id="rds_05_0024__b4323887426">Instances</strong> page, click the target DB instance name to go to the <strong id="rds_05_0024__b37111426132511">Summary</strong> page.</span></li><li id="rds_05_0024__li893551843716"><span>Under <strong id="rds_05_0024__b1143665315240">Floating IP Address</strong>, click <strong id="rds_05_0024__b0945114913241">Configure</strong>.</span></li><li id="rds_05_0024__li20205612185217"><span>In the displayed dialog box, check the number of in-use IP addresses. If the in-use IP addresses are less than 254, there are unused floating IP addresses.</span></li><li id="rds_05_0024__li24721645571"><span>Select an available IP address and click <strong id="rds_05_0024__b164371243105510">OK</strong>.</span><p><p id="rds_05_0024__p887320520579">An in-use IP address cannot be used as the new floating IP address of the DB instance.</p>
</p></li></ol>
</div>
<div>

View File

@ -5,7 +5,7 @@
</div>
<div class="section" id="rds_05_0038__section1627950142310"><h4 class="sectiontitle">Precautions</h4><ul id="rds_05_0038__ul2421640153812"><li id="rds_05_0038__li1043184003812">During the maintenance window, the DB instance will be intermittently disconnected for one or two times. Ensure that your applications support automatic reconnection.</li></ul>
</div>
<div class="section" id="rds_05_0038__section3437195084312"><h4 class="sectiontitle">Procedure</h4><ol id="rds_05_0038__ol194824585432"><li id="rds_05_0038__li17616348171"><span>Log in to the management console.</span></li><li id="rds_05_0038__li146168481712"><span>Click <span><img id="rds_05_0038__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_05_0038__li96167481711"><span>Click <strong id="rds_05_0038__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_05_0038__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_05_0038__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_05_0038__li45651852101719"><span>On the <strong id="rds_05_0038__b1281132165712">Instances</strong> page, click the target DB instance name to go to the <strong id="rds_05_0038__b49088532303">Overview</strong> page. Under <strong id="rds_05_0038__b7788142865813">Maintenance Window</strong>, click <strong id="rds_05_0038__b536202831114">Configure</strong>.</span></li><li id="rds_05_0038__li1968591914482"><span>In the displayed dialog box, select an interval and a time range, and click <strong id="rds_05_0038__b16438191433318">OK</strong>.</span><p><div class="note" id="rds_05_0038__note14280145018492"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><p id="rds_05_0038__p7282950184919">Changing the maintenance window does not affect the execution time of the scheduled tasks in the original maintenance period.</p>
<div class="section" id="rds_05_0038__section3437195084312"><h4 class="sectiontitle">Procedure</h4><ol id="rds_05_0038__ol194824585432"><li id="rds_05_0038__li17616348171"><span>Log in to the management console.</span></li><li id="rds_05_0038__li146168481712"><span>Click <span><img id="rds_05_0038__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_05_0038__li96167481711"><span>Click <strong id="rds_05_0038__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_05_0038__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_05_0038__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_05_0038__li45651852101719"><span>On the <strong id="rds_05_0038__b1281132165712">Instances</strong> page, click the target DB instance name to go to the <strong id="rds_05_0038__b12258346361">Summary</strong> page. Under <strong id="rds_05_0038__b7788142865813">Maintenance Window</strong>, click <strong id="rds_05_0038__b536202831114">Configure</strong>.</span></li><li id="rds_05_0038__li1968591914482"><span>In the displayed dialog box, select an interval and a time range, and click <strong id="rds_05_0038__b16438191433318">OK</strong>.</span><p><div class="note" id="rds_05_0038__note14280145018492"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><p id="rds_05_0038__p7282950184919">Changing the maintenance window does not affect the execution time of the scheduled tasks in the original maintenance period.</p>
</div></div>
</p></li></ol>
</div>

View File

@ -6,9 +6,9 @@
<p id="rds_05_0039__p119711841104310">You can enable storage autoscaling in either of the following ways:</p>
<ul id="rds_05_0039__ul209718415433"><li id="rds_05_0039__li6971134114317">Enable this function when you create a DB instance. For details, see <a href="rds_02_0008.html">Step 1: Create a DB Instance</a>.</li><li id="rds_05_0039__li149711841174316">Enable this function after you create a DB instance. See the operations provided in this section.</li></ul>
</div>
<div class="section" id="rds_05_0039__section6787733202313"><h4 class="sectiontitle">Constraints</h4><ul id="rds_05_0039__ul979225822314"><li id="rds_05_0039__li06727368284">The storage space can be scaled up automatically only when your instance status is <strong id="rds_05_0039__b1171614297219">Available</strong> or <strong id="rds_05_0039__b671716291129">Storage full</strong>.</li><li id="rds_05_0039__li92060111419">Storage autoscaling for RDS for MySQL DB instances is supported only for cloud SSD and extreme SSD storage types.</li><li id="rds_05_0039__li7486533103711">The maximum allowed storage is 4,000 GB.</li><li id="rds_05_0039__li1332761153919">For primary/standby DB instances, autoscaling the storage for the primary DB instance will also autoscale the storage for the standby DB instance.</li><li id="rds_05_0039__li17123197163913">Storage autoscaling is unavailable when the DB instance is in any of the following statuses: changing instance class, upgrading a minor version, migrating the standby DB instance, and rebooting.</li></ul>
<div class="section" id="rds_05_0039__section6787733202313"><h4 class="sectiontitle">Constraints</h4><ul id="rds_05_0039__ul979225822314"><li id="rds_05_0039__li06727368284">The storage space can be scaled up automatically only when your instance status is <strong id="rds_05_0039__b1171614297219">Available</strong> or <strong id="rds_05_0039__b671716291129">Storage full</strong>.</li><li id="rds_05_0039__li7486533103711">The maximum allowed storage is 4,000 GB.</li><li id="rds_05_0039__li1332761153919">For primary/standby DB instances, autoscaling the storage for the primary DB instance will also autoscale the storage for the standby DB instance.</li><li id="rds_05_0039__li17123197163913">Storage autoscaling is unavailable when the DB instance is in any of the following statuses: changing instance class, upgrading a minor version, migrating the standby DB instance, and rebooting.</li></ul>
</div>
<div class="section" id="rds_05_0039__section132050514149"><h4 class="sectiontitle">Procedure</h4><ol id="rds_05_0039__ol4816555385651"><li id="rds_05_0039__li17616348171"><span>Log in to the management console.</span></li><li id="rds_05_0039__li146168481712"><span>Click <span><img id="rds_05_0039__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_05_0039__li96167481711"><span>Click <strong id="rds_05_0039__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_05_0039__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_05_0039__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_05_0039__li683691813294"><span>On the <strong id="rds_05_0039__b36340357311">Instances</strong> page, click the target DB instance or read replica name (click <span><img id="rds_05_0039__image2099112213211" src="en-us_image_0000002492673373.png"></span> in front of a DB instance to locate the read replica) to go to the <strong id="rds_05_0039__b2054716153405">Overview</strong> page.</span></li><li id="rds_05_0039__li57411551748"><span>In the <span class="uicontrol" id="rds_05_0039__uicontrol6559713154519"><b>Storage &amp; Backup</b></span> area, toggle on the <strong id="rds_05_0039__b5716145718409">Storage Autoscaling</strong> switch.</span></li><li id="rds_05_0039__lf939df2e325d47d490c6ffdacf5f0b19"><span>In the displayed dialog box, set the following parameters:</span><p>
<div class="section" id="rds_05_0039__section132050514149"><h4 class="sectiontitle">Procedure</h4><ol id="rds_05_0039__ol4816555385651"><li id="rds_05_0039__li17616348171"><span>Log in to the management console.</span></li><li id="rds_05_0039__li146168481712"><span>Click <span><img id="rds_05_0039__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_05_0039__li96167481711"><span>Click <strong id="rds_05_0039__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_05_0039__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_05_0039__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_05_0039__li683691813294"><span>On the <strong id="rds_05_0039__b36340357311">Instances</strong> page, click the target DB instance or read replica name (click <span><img id="rds_05_0039__image2099112213211" src="en-us_image_0000002492673373.png"></span> in front of a DB instance to locate the read replica) to go to the <strong id="rds_05_0039__b2969153017367">Summary</strong> page.</span></li><li id="rds_05_0039__li57411551748"><span>In the <span class="uicontrol" id="rds_05_0039__uicontrol6559713154519"><b>Storage &amp; Backup</b></span> area, toggle on the <strong id="rds_05_0039__b5716145718409">Storage Autoscaling</strong> switch.</span></li><li id="rds_05_0039__lf939df2e325d47d490c6ffdacf5f0b19"><span>In the displayed dialog box, set the following parameters:</span><p>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="rds_05_0039__table1792553812574" frame="border" border="1" rules="all"><caption><b>Table 1 </b>Parameter description</caption><thead align="left"><tr id="rds_05_0039__row492519386579"><th align="left" class="cellrowborder" valign="top" width="36.449999999999996%" id="mcps1.3.3.2.6.2.1.2.3.1.1"><p id="rds_05_0039__p179245387578"><strong id="rds_05_0039__b1878293141518">Parameter</strong></p>
</th>
<th align="left" class="cellrowborder" valign="top" width="63.55%" id="mcps1.3.3.2.6.2.1.2.3.1.2"><p id="rds_05_0039__p192511388575"><strong id="rds_05_0039__b17792152841518">Description</strong></p>

View File

@ -2,10 +2,10 @@
<h1 class="topictitle1">Migrating a Standby DB Instance</h1>
<div id="body1569306937973"><div class="section" id="rds_05_0060__section11993742229"><h4 class="sectiontitle">Scenarios</h4><p id="rds_05_0060__p899313421822">You can migrate a standby DB instance to another AZ in the same region as the original AZ.</p>
<div class="note" id="rds_05_0060__note10993342423"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><ul id="rds_05_0060__ul15993542327"><li id="rds_05_0060__li184713018151">Primary/standby instances running MySQL 5.7, or 8.0 support standby instance migration to another AZ. </li><li id="rds_05_0060__li79931542523">DDL operations and scheduled events will be suspended during migration. To prevent service interruptions, perform the migration during off-peak hours.</li></ul>
<div class="note" id="rds_05_0060__note10993342423"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><ul id="rds_05_0060__ul15993542327"><li id="rds_05_0060__li184713018151">Primary/standby instances running MySQL 5.7 or 8.0 support standby instance migration to another AZ. </li><li id="rds_05_0060__li79931542523">DDL operations and scheduled events will be suspended during migration. To prevent service interruptions, perform the migration during off-peak hours.</li></ul>
</div></div>
</div>
<div class="section" id="rds_05_0060__section2366163112409"><h4 class="sectiontitle">Procedure</h4><ol id="rds_05_0060__o2173078bb42c41a0b711d64c49e2565d"><li id="rds_05_0060__li17616348171"><span>Log in to the management console.</span></li><li id="rds_05_0060__li146168481712"><span>Click <span><img id="rds_05_0060__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_05_0060__li96167481711"><span>Click <strong id="rds_05_0060__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_05_0060__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_05_0060__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_05_0060__li53158765111855"><span>On the <span class="uicontrol" id="rds_05_0060__uicontrol59770215612"><b>Instances</b></span> page, locate the target DB instance and choose <span class="uicontrol" id="rds_05_0060__uicontrol697982111611"><b>More</b></span> &gt; <span class="uicontrol" id="rds_05_0060__uicontrol19801211367"><b>Migrate Standby Instance to Another AZ</b></span> in the <span class="uicontrol" id="rds_05_0060__uicontrol2098110215613"><b>Operation</b></span> column.</span></li><li id="rds_05_0060__li18214928113618"><span>On the displayed page, select a target AZ and click <strong id="rds_05_0060__b148701224193010">Submit</strong>.</span></li><li id="rds_05_0060__li5427191015407"><span>After the migration is complete, you can view and manage the DB instance on the <span class="uicontrol" id="rds_05_0060__uicontrol1362265152119"><b>Instances</b></span> page.</span><p><ul id="rds_05_0060__ul41357172418"><li id="rds_05_0060__li181359179419">During the migration process, the DB instance status is <strong id="rds_05_0060__b17843153810347">Migrating standby DB instance</strong>. You can view the progress on the <span class="uicontrol" id="rds_05_0060__uicontrol151966421224"><b>Task Center</b></span> page. For details, see section <a href="rds_05_0007.html">Task Center</a>.</li><li id="rds_05_0060__li17112134118">In the upper right corner of the DB instance list, click <span><img id="rds_05_0060__image17447059193220" src="en-us_image_0000001191211495.png"></span> to refresh the list. After the migration is complete, the DB instance status will become <span class="uicontrol" id="rds_05_0060__uicontrol11336414112110"><b>Available</b></span>.</li><li id="rds_05_0060__li141551334112511">On the <strong id="rds_05_0060__b7118545110">Overview</strong> page, find <strong id="rds_05_0060__b910433611120">AZ</strong> and check the AZ hosting the standby DB instance.</li></ul>
<div class="section" id="rds_05_0060__section2366163112409"><h4 class="sectiontitle">Procedure</h4><ol id="rds_05_0060__o2173078bb42c41a0b711d64c49e2565d"><li id="rds_05_0060__li17616348171"><span>Log in to the management console.</span></li><li id="rds_05_0060__li146168481712"><span>Click <span><img id="rds_05_0060__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_05_0060__li96167481711"><span>Click <strong id="rds_05_0060__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_05_0060__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_05_0060__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_05_0060__li53158765111855"><span>On the <span class="uicontrol" id="rds_05_0060__uicontrol59770215612"><b>Instances</b></span> page, locate the target DB instance and choose <span class="uicontrol" id="rds_05_0060__uicontrol697982111611"><b>More</b></span> &gt; <span class="uicontrol" id="rds_05_0060__uicontrol19801211367"><b>Migrate Standby Instance to Another AZ</b></span> in the <span class="uicontrol" id="rds_05_0060__uicontrol2098110215613"><b>Operation</b></span> column.</span></li><li id="rds_05_0060__li18214928113618"><span>On the displayed page, select a target AZ and click <strong id="rds_05_0060__b148701224193010">Submit</strong>.</span></li><li id="rds_05_0060__li5427191015407"><span>After the migration is complete, you can view and manage the DB instance on the <span class="uicontrol" id="rds_05_0060__uicontrol1362265152119"><b>Instances</b></span> page.</span><p><ul id="rds_05_0060__ul41357172418"><li id="rds_05_0060__li181359179419">During the migration process, the DB instance status is <strong id="rds_05_0060__b17843153810347">Migrating standby DB instance</strong>. You can view the progress on the <span class="uicontrol" id="rds_05_0060__uicontrol151966421224"><b>Task Center</b></span> page. For details, see section <a href="rds_05_0007.html">Task Center</a>.</li><li id="rds_05_0060__li17112134118">In the upper right corner of the DB instance list, click <span><img id="rds_05_0060__image17447059193220" src="en-us_image_0000001191211495.png"></span> to refresh the list. After the migration is complete, the DB instance status will become <span class="uicontrol" id="rds_05_0060__uicontrol11336414112110"><b>Available</b></span>.</li><li id="rds_05_0060__li141551334112511">On the <strong id="rds_05_0060__b12369936143617">Summary</strong> page, find <strong id="rds_05_0060__b910433611120">AZ</strong> and check the AZ hosting the standby DB instance.</li></ul>
</p></li></ol>
</div>
<p id="rds_05_0060__p8060118"></p>

View File

@ -7,7 +7,7 @@
<div class="section" id="rds_05_0085__section593175034210"><h4 class="sectiontitle">Procedure</h4><p id="rds_05_0085__p142803994218">When you buy a DB instance, the system automatically assigns a private domain name to your instance.</p>
<p id="rds_05_0085__p1382518516488">After the DB instance is created, you can change the private domain name as needed.</p>
</div>
<ol id="rds_05_0085__ol10762913125018"><li id="rds_05_0085__li17616348171"><span>Log in to the management console.</span></li><li id="rds_05_0085__li146168481712"><span>Click <span><img id="rds_05_0085__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_05_0085__li96167481711"><span>Click <strong id="rds_05_0085__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_05_0085__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_05_0085__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_05_0085__li461813238517"><span>On the <strong id="rds_05_0085__b4323887426">Instances</strong> page, click the target DB instance name to go to the <strong id="rds_05_0085__b1711113404234">Overview</strong> page.</span></li><li id="rds_05_0085__li893551843716"><span>Under <strong id="rds_05_0085__b16429152634016">Private Domain Name</strong>, click <strong id="rds_05_0085__b10430162644013">Configure</strong>.</span><p><p id="rds_05_0085__p14631182513377">Alternatively, in the navigation pane on the left, choose <strong id="rds_05_0085__b41039399427">Connectivity &amp; Security</strong>. On the displayed page, click <strong id="rds_05_0085__b1510673964214">Change</strong> next to the <strong id="rds_05_0085__b510614399424">Private Domain Name</strong> field.</p>
<ol id="rds_05_0085__ol10762913125018"><li id="rds_05_0085__li17616348171"><span>Log in to the management console.</span></li><li id="rds_05_0085__li146168481712"><span>Click <span><img id="rds_05_0085__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_05_0085__li96167481711"><span>Click <strong id="rds_05_0085__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_05_0085__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_05_0085__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_05_0085__li461813238517"><span>On the <strong id="rds_05_0085__b4323887426">Instances</strong> page, click the target DB instance name to go to the <strong id="rds_05_0085__b1351252712513">Summary</strong> page.</span></li><li id="rds_05_0085__li893551843716"><span>Under <strong id="rds_05_0085__b16429152634016">Private Domain Name</strong>, click <strong id="rds_05_0085__b10430162644013">Configure</strong>.</span><p><p id="rds_05_0085__p14631182513377">Alternatively, in the navigation pane on the left, choose <strong id="rds_05_0085__b41039399427">Connectivity &amp; Security</strong>. On the displayed page, click <strong id="rds_05_0085__b1510673964214">Change</strong> next to the <strong id="rds_05_0085__b510614399424">Private Domain Name</strong> field.</p>
</p></li><li id="rds_05_0085__li20205612185217"><span>In the displayed dialog box, enter a new domain name and click <strong id="rds_05_0085__b1338217536589">OK</strong>.</span><p><ul id="rds_05_0085__ul74714391343"><li id="rds_05_0085__li1747153910415">Only the prefix of a private domain name can be modified.</li><li id="rds_05_0085__li124714391649">The prefix of a private domain name contains 8 to 63 characters, and can include only letters and digits.</li><li id="rds_05_0085__li154711639346">The new private domain name must be different from existing ones.</li></ul>
</p></li></ol>
</div>

View File

@ -2,6 +2,7 @@
<h1 class="topictitle1">Changing a Storage Type</h1>
<div id="body0000002493857913"><div class="section" id="rds_05_0140__section18415141193414"><h4 class="sectiontitle">Scenarios</h4><p id="rds_05_0140__en-us_topic_0000001992666646_en-us_topic_0000001583350996_p720173244715">If the storage type of your RDS DB instance does not match your workloads, you can change it as needed.</p>
<p id="rds_05_0140__p19823163232918">For details about storage types, see <a href="rds_01_0020.html">DB Instance Storage Types</a>.</p>
</div>
<div class="section" id="rds_05_0140__en-us_topic_0000001992666646_en-us_topic_0000001583350996_section204421514102117"><h4 class="sectiontitle">Constraints</h4>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="rds_05_0140__en-us_topic_0000001992666646_table561053064010" frame="border" border="1" rules="all"><caption><b>Table 1 </b>Constraints</caption><thead align="left"><tr id="rds_05_0140__en-us_topic_0000001992666646_row1649630204017"><th align="left" class="cellrowborder" valign="top" width="22.720000000000002%" id="mcps1.3.2.2.2.3.1.1"><p id="rds_05_0140__en-us_topic_0000001992666646_p8649163014012">Phase</p>
@ -29,7 +30,7 @@
</table>
</div>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="rds_05_0140__en-us_topic_0000001992666646_table471721184412" frame="border" border="1" rules="all"><caption><b>Table 2 </b>Storage types</caption><thead align="left"><tr id="rds_05_0140__en-us_topic_0000001992666646_row13770111111449"><th align="left" class="cellrowborder" valign="top" width="29.24%" id="mcps1.3.2.3.2.4.1.1"><p id="rds_05_0140__en-us_topic_0000001992666646_p1243401911476">Instance Type</p>
<div class="tablenoborder"><table cellpadding="4" cellspacing="0" summary="" id="rds_05_0140__en-us_topic_0000001992666646_table471721184412" frame="border" border="1" rules="all"><caption><b>Table 2 </b>Storage types that can be changed</caption><thead align="left"><tr id="rds_05_0140__en-us_topic_0000001992666646_row13770111111449"><th align="left" class="cellrowborder" valign="top" width="29.24%" id="mcps1.3.2.3.2.4.1.1"><p id="rds_05_0140__en-us_topic_0000001992666646_p1243401911476">Instance Type</p>
</th>
<th align="left" class="cellrowborder" valign="top" width="33.52%" id="mcps1.3.2.3.2.4.1.2"><p id="rds_05_0140__en-us_topic_0000001992666646_p18770211144414">Original Storage Type</p>
</th>
@ -37,24 +38,62 @@
</th>
</tr>
</thead>
<tbody><tr id="rds_05_0140__en-us_topic_0000001992666646_row277012116448"><td class="cellrowborder" rowspan="2" valign="top" width="29.24%" headers="mcps1.3.2.3.2.4.1.1 "><ul id="rds_05_0140__ul155929341504"><li id="rds_05_0140__li859210348017">Primary/Standby</li><li id="rds_05_0140__li122541361607">Read Replica</li><li id="rds_05_0140__li89183119115">Single</li></ul>
<tbody><tr id="rds_05_0140__row920119518189"><td class="cellrowborder" rowspan="2" valign="top" width="29.24%" headers="mcps1.3.2.3.2.4.1.1 "><p id="rds_05_0140__p152011451201813">Single</p>
</td>
<td class="cellrowborder" valign="top" width="33.52%" headers="mcps1.3.2.3.2.4.1.2 "><p id="rds_05_0140__en-us_topic_0000001992666646_p54991533164517">Cloud SSD</p>
<td class="cellrowborder" valign="top" width="33.52%" headers="mcps1.3.2.3.2.4.1.2 "><p id="rds_05_0140__p120125112183">Cloud SSD</p>
</td>
<td class="cellrowborder" valign="top" width="37.24%" headers="mcps1.3.2.3.2.4.1.3 "><p id="rds_05_0140__en-us_topic_0000001992666646_p168163563452">Extreme SSD</p>
<td class="cellrowborder" valign="top" width="37.24%" headers="mcps1.3.2.3.2.4.1.3 "><p id="rds_05_0140__p82011651111813">Flexible SSD</p>
</td>
</tr>
<tr id="rds_05_0140__row18795714118"><td class="cellrowborder" valign="top" headers="mcps1.3.2.3.2.4.1.1 "><p id="rds_05_0140__p08291717118">Ultra-high I/O</p>
<tr id="rds_05_0140__row1454982442014"><td class="cellrowborder" valign="top" headers="mcps1.3.2.3.2.4.1.1 "><p id="rds_05_0140__p2054952417207">Flexible SSD</p>
</td>
<td class="cellrowborder" valign="top" headers="mcps1.3.2.3.2.4.1.2 "><p id="rds_05_0140__p5828171813">Cloud SSD or extreme SSD</p>
<td class="cellrowborder" valign="top" headers="mcps1.3.2.3.2.4.1.2 "><p id="rds_05_0140__p254914245204">Cloud SSD</p>
</td>
</tr>
<tr id="rds_05_0140__row963765410183"><td class="cellrowborder" rowspan="3" valign="top" width="29.24%" headers="mcps1.3.2.3.2.4.1.1 "><p id="rds_05_0140__p954134914559">Read Replica</p>
</td>
<td class="cellrowborder" valign="top" width="33.52%" headers="mcps1.3.2.3.2.4.1.2 "><p id="rds_05_0140__p166621710112114">Cloud SSD</p>
</td>
<td class="cellrowborder" valign="top" width="37.24%" headers="mcps1.3.2.3.2.4.1.3 "><p id="rds_05_0140__p15662910112116">Extreme SSD or Flexible SSD</p>
</td>
</tr>
<tr id="rds_05_0140__row191808443191"><td class="cellrowborder" valign="top" headers="mcps1.3.2.3.2.4.1.1 "><p id="rds_05_0140__p6662510162114">Extreme SSD</p>
</td>
<td class="cellrowborder" valign="top" headers="mcps1.3.2.3.2.4.1.2 "><p id="rds_05_0140__p20662141013212">Cloud SSD or Flexible SSD</p>
</td>
</tr>
<tr id="rds_05_0140__row1243713444198"><td class="cellrowborder" valign="top" headers="mcps1.3.2.3.2.4.1.1 "><p id="rds_05_0140__p26622010112113">Flexible SSD</p>
</td>
<td class="cellrowborder" valign="top" headers="mcps1.3.2.3.2.4.1.2 "><p id="rds_05_0140__p9662151002111">Cloud SSD or Extreme SSD</p>
</td>
</tr>
<tr id="rds_05_0140__row073216137551"><td class="cellrowborder" rowspan="3" valign="top" width="29.24%" headers="mcps1.3.2.3.2.4.1.1 "><p id="rds_05_0140__p12732111325519">Primary/Standby</p>
</td>
<td class="cellrowborder" valign="top" width="33.52%" headers="mcps1.3.2.3.2.4.1.2 "><p id="rds_05_0140__p978503135616">Cloud SSD</p>
</td>
<td class="cellrowborder" valign="top" width="37.24%" headers="mcps1.3.2.3.2.4.1.3 "><p id="rds_05_0140__p19785113135614">Extreme SSD or Flexible SSD</p>
</td>
</tr>
<tr id="rds_05_0140__row19912147556"><td class="cellrowborder" valign="top" headers="mcps1.3.2.3.2.4.1.1 "><p id="rds_05_0140__p7785138560">Extreme SSD</p>
</td>
<td class="cellrowborder" valign="top" headers="mcps1.3.2.3.2.4.1.2 "><p id="rds_05_0140__p1778513175616">Cloud SSD or Flexible SSD</p>
</td>
</tr>
<tr id="rds_05_0140__row12547191455511"><td class="cellrowborder" valign="top" headers="mcps1.3.2.3.2.4.1.1 "><p id="rds_05_0140__p137859305610">Flexible SSD</p>
</td>
<td class="cellrowborder" valign="top" headers="mcps1.3.2.3.2.4.1.2 "><p id="rds_05_0140__p278520325620">Cloud SSD or Extreme SSD</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="section" id="rds_05_0140__section3437195084312"><h4 class="sectiontitle">Procedure</h4><ol id="rds_05_0140__ol194824585432"><li id="rds_05_0140__li17616348171"><span>Log in to the management console.</span></li><li id="rds_05_0140__li146168481712"><span>Click <span><img id="rds_05_0140__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_05_0140__li96167481711"><span>Click <strong id="rds_05_0140__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_05_0140__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_05_0140__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_05_0140__li45651852101719"><span>On the <span class="uicontrol" id="rds_05_0140__uicontrol1570716377538"><b>Instances</b></span> page, locate a DB instance using cloud SSD and choose <span class="uicontrol" id="rds_05_0140__uicontrol167071337125311"><b>More</b></span> &gt; <span class="uicontrol" id="rds_05_0140__uicontrol18707143719533"><b>Change Instance Class</b></span> in the <span class="uicontrol" id="rds_05_0140__uicontrol370715377537"><b>Operation</b></span> column.</span><p><p id="rds_05_0140__p615141583510">Alternatively, click the instance name to go to the <strong id="rds_05_0140__b5907165415317">Overview</strong> page. Under <strong id="rds_05_0140__b1190711540534">Instance Class</strong>, click <strong id="rds_05_0140__b1390775445311">Configure</strong>.</p>
</p></li><li id="rds_05_0140__li1968591914482"><span>On the displayed page, select <strong id="rds_05_0140__b02281930195910">Extreme SSD</strong> for <strong id="rds_05_0140__b34921427155917">Storage Type</strong> and click <strong id="rds_05_0140__b111301174264">Next</strong>.</span></li><li id="rds_05_0140__li2015111503515"><span>Confirm the new storage type. Click <span class="uicontrol" id="rds_05_0140__uicontrol543535718597"><b>Submit</b></span>.</span></li><li id="rds_05_0140__li81651517357"><span>Check the results.</span><p><p id="rds_05_0140__p171661583512">Return to the <strong id="rds_05_0140__b138351935812">Instances</strong> page. A few minutes later, click the instance name and check the new storage type on the displayed <strong id="rds_05_0140__b17209155218114">Overview</strong> page.</p>
<div class="section" id="rds_05_0140__section3437195084312"><h4 class="sectiontitle">Procedure</h4><ol id="rds_05_0140__ol194824585432"><li id="rds_05_0140__li17616348171"><span>Log in to the management console.</span></li><li id="rds_05_0140__li146168481712"><span>Click <span><img id="rds_05_0140__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_05_0140__li96167481711"><span>Click <strong id="rds_05_0140__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_05_0140__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_05_0140__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_05_0140__li45651852101719"><span>On the <span class="uicontrol" id="rds_05_0140__uicontrol1570716377538"><b>Instances</b></span> page, locate a DB instance using cloud SSD and choose <span class="uicontrol" id="rds_05_0140__uicontrol167071337125311"><b>More</b></span> &gt; <span class="uicontrol" id="rds_05_0140__uicontrol18707143719533"><b>Change Instance Class</b></span> in the <span class="uicontrol" id="rds_05_0140__uicontrol370715377537"><b>Operation</b></span> column.</span><p><p id="rds_05_0140__p615141583510">Alternatively, click the instance name to go to the <strong id="rds_05_0140__b9865183133618">Summary</strong> page. Under <strong id="rds_05_0140__b1190711540534">Instance Class</strong>, click <strong id="rds_05_0140__b1390775445311">Configure</strong>.</p>
</p></li><li id="rds_05_0140__li1968591914482"><span>On the displayed page, select a target Storage Type,<strong id="rds_05_0140__b178989131489"> </strong>for example,<strong id="rds_05_0140__b78984130815"> Extreme SSD</strong> for <strong id="rds_05_0140__b34921427155917">Storage Type</strong> and click <strong id="rds_05_0140__b111301174264">Next</strong>.</span><p><p id="rds_05_0140__p8419646181413">If the target storage type is <strong id="rds_05_0140__b14294555121420">Flexible SSD</strong>, click <strong id="rds_05_0140__b102389011520">Disk QoS</strong> under <strong id="rds_05_0140__b19502578159">Change Type</strong> and enter the IOPS and throughput.</p>
<ul id="rds_05_0140__ul782517243179"><li id="rds_05_0140__li98269244173">IOPS: Flexible SSD decouples capacity from performance and allows for tailored IOPS for your business requirements with fixed capacity.<p id="rds_05_0140__p9406614102618"><a name="rds_05_0140__li98269244173"></a><a name="li98269244173"></a>This parameter is available only for Flexible SSD. The value range is from 3000 to 128000. The IOPS is limited by the disk size and must be no greater than 500 times the disk capacity.</p>
</li><li id="rds_05_0140__li1185650191813">Throughput: Flexible SSD decouples capacity from performance and allows for tailored throughput for your business requirements with fixed capacity.<p id="rds_05_0140__p2407414152616"><a name="rds_05_0140__li1185650191813"></a><a name="li1185650191813"></a>This parameter is available only for Flexible SSD. The value ranges from 125 to 1000 (in MiB/s) and must also be no greater than the IOPS divided by 4.</p>
</li></ul>
</p></li><li id="rds_05_0140__li2015111503515"><span>Confirm the configurations and Click <span class="uicontrol" id="rds_05_0140__uicontrol543535718597"><b>Submit</b></span>.</span></li><li id="rds_05_0140__li81651517357"><span>Check the results.</span><p><p id="rds_05_0140__p171661583512">Return to the <strong id="rds_05_0140__b138351935812">Instances</strong> page. A few minutes later, click the instance name and check the new storage type on the displayed <strong id="rds_05_0140__b793116321361">Summary</strong> page.</p>
</p></li></ol>
</div>
</div>

View File

@ -3,7 +3,7 @@
<h1 class="topictitle1">Changing a Security Group</h1>
<div id="body1497948971433"><div class="section" id="rds_08_0003__section36712096194014"><h4 class="sectiontitle">Scenarios</h4><p id="rds_08_0003__p27667840173352">This section describes how to change the security group of a primary DB instance or read replica. For primary/standby DB instances, changing the security group of the primary DB instance will cause the security group of the standby DB instance to also be changed accordingly.</p>
</div>
<div class="section" id="rds_08_0003__section59386647165940"><h4 class="sectiontitle">Procedure</h4><ol id="rds_08_0003__o3a2715f18c35409aa98d1b471dc7b5d3"><li id="rds_08_0003__li17616348171"><span>Log in to the management console.</span></li><li id="rds_08_0003__li146168481712"><span>Click <span><img id="rds_08_0003__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_08_0003__li96167481711"><span>Click <strong id="rds_08_0003__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_08_0003__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_08_0003__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_08_0003__le65a8798b3894fa9b8b778a700ad84b8"><span>On the <strong id="rds_08_0003__b43610246918">Instances</strong> page, click the target primary DB instance or read replica.</span></li><li id="rds_08_0003__l2a5b3371b82b4bf0b87371149b3ffc1a"><span>On the <span class="uicontrol" id="rds_08_0003__uicontrol129475119718"><b>Overview</b></span> page, click <strong id="rds_08_0003__b10728173016315">Configure</strong> under <strong id="rds_08_0003__b20669101892918">Security Group</strong>.</span></li><li id="rds_08_0003__li10553132183112"><span>In the displayed dialog box, select one from the drop-down list.</span></li><li id="rds_08_0003__li7265815143216"><span>Click <strong id="rds_08_0003__b02712410311">OK</strong> to submit the modification.</span></li><li id="rds_08_0003__lde4afc21cfca4e758513b927fd3eb6bb"><span>Changing the security group takes 1 to 3 minutes. Click <span><img id="rds_08_0003__image06841349468" src="en-us_image_0000001145051618.png"></span> in the upper right corner on the <span class="uicontrol" id="rds_08_0003__uicontrol1616812353213"><b>Overview</b></span> page to view the results.</span></li></ol>
<div class="section" id="rds_08_0003__section59386647165940"><h4 class="sectiontitle">Procedure</h4><ol id="rds_08_0003__o3a2715f18c35409aa98d1b471dc7b5d3"><li id="rds_08_0003__li17616348171"><span>Log in to the management console.</span></li><li id="rds_08_0003__li146168481712"><span>Click <span><img id="rds_08_0003__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_08_0003__li96167481711"><span>Click <strong id="rds_08_0003__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_08_0003__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_08_0003__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_08_0003__le65a8798b3894fa9b8b778a700ad84b8"><span>On the <strong id="rds_08_0003__b43610246918">Instances</strong> page, click the target primary DB instance or read replica.</span></li><li id="rds_08_0003__l2a5b3371b82b4bf0b87371149b3ffc1a"><span>On the <span class="uicontrol" id="rds_08_0003__uicontrol1755285511251"><b>Summary</b></span> page, click <strong id="rds_08_0003__b10728173016315">Configure</strong> under <strong id="rds_08_0003__b20669101892918">Security Group</strong>.</span></li><li id="rds_08_0003__li10553132183112"><span>In the displayed dialog box, select one from the drop-down list.</span></li><li id="rds_08_0003__li7265815143216"><span>Click <strong id="rds_08_0003__b02712410311">OK</strong> to submit the modification.</span></li><li id="rds_08_0003__lde4afc21cfca4e758513b927fd3eb6bb"><span>Changing the security group takes 1 to 3 minutes. Click <span><img id="rds_08_0003__image06841349468" src="en-us_image_0000001145051618.png"></span> in the upper right corner on the <span class="uicontrol" id="rds_08_0003__uicontrol567212562255"><b>Summary</b></span> page to view the results.</span></li></ol>
</div>
</div>
<div>

View File

@ -9,7 +9,17 @@
<div class="section" id="rds_08_0004__section12737163953218"><h4 class="sectiontitle">Constraints</h4><ul id="rds_08_0004__ul17777165775710"><li id="rds_08_0004__li8211930817">The number of tables in a DB instance affects the backup speed. The maximum number of tables is 500,000.</li><li id="rds_08_0004__li141061323458">The system verifies the connection to the DB instance when starting a full backup task. If either of the following conditions is met, the verification fails and a retry is automatically performed. If the retry fails, the backup will fail.<ul id="rds_08_0004__ul839422419612"><li id="rds_08_0004__li154334212616">DDL operations are being performed on the DB instance.</li><li id="rds_08_0004__li115310299613">The backup lock failed to be obtained from the DB instance.</li></ul>
</li></ul>
</div>
<div class="section" id="rds_08_0004__section22744299173619"><h4 class="sectiontitle">Modifying an Automated Backup Policy</h4><ol id="rds_08_0004__ol1839086092637"><li id="rds_08_0004__li17616348171"><span>Log in to the management console.</span></li><li id="rds_08_0004__li146168481712"><span>Click <span><img id="rds_08_0004__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_08_0004__li96167481711"><span>Click <strong id="rds_08_0004__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_08_0004__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_08_0004__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_08_0004__li1750676792642"><span>On the <strong id="rds_08_0004__b47909245916358">Instances</strong> page, click the target DB instance.</span></li><li id="rds_08_0004__li6966152194417"><span>On the <strong id="rds_08_0004__b5950101816208">Backups &amp; Restorations</strong> page, in the upper right corner of the page, choose <strong id="rds_08_0004__b7840202811258">Modify Backup Policy</strong> &gt; <strong id="rds_08_0004__b19840102862512">Configure Same-Region Backup Policy</strong>. On the displayed page, you can view the existing backup policy. If you want to modify the policy, adjust the values of the following parameters:</span><p><ul id="rds_08_0004__ul9640101565917"><li id="rds_08_0004__li1864121515912"><strong id="rds_08_0004__b842352706113149">Retention Period</strong> is the number of days that your automated backups are saved for. Increasing the retention period will improve data reliability.</li><li id="rds_08_0004__li235141875913">If you shorten the retention period, the new backup policy takes effect for all backup files. Any backup files that have expired, based on a newly configured retention period, will be deleted.</li><li id="rds_08_0004__li109504460126">The backup retention period is the number of days you want automated full backups and binlog backups of your DB instance to be saved for. It ranges from 1732 days. The backup time window is one hour. You are advised to select an off-peak time window for automated backups. By default, each day of the week is selected for <strong id="rds_08_0004__b1125417171809">Backup Cycle</strong> and you can change it. At least one day must be selected.</li></ul>
<div class="section" id="rds_08_0004__section22744299173619"><h4 class="sectiontitle">Modifying an Automated Backup Policy</h4><ol id="rds_08_0004__ol1839086092637"><li id="rds_08_0004__li17616348171"><span>Log in to the management console.</span></li><li id="rds_08_0004__li146168481712"><span>Click <span><img id="rds_08_0004__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_08_0004__li96167481711"><span>Click <strong id="rds_08_0004__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_08_0004__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_08_0004__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_08_0004__li1750676792642"><span>On the <strong id="rds_08_0004__b47909245916358">Instances</strong> page, click the target DB instance.</span></li><li id="rds_08_0004__li6966152194417"><span>On the <strong id="rds_08_0004__b5950101816208">Backups &amp; Restorations</strong> page, in the upper right corner of the page, choose <strong id="rds_08_0004__b7840202811258">Modify Backup Policy</strong> &gt; <strong id="rds_08_0004__b19840102862512">Configure Same-Region Backup Policy</strong>. On the displayed page, you can view the existing backup policy. If you want to modify the policy, adjust the values of the following parameters:</span><p><ul id="rds_08_0004__ul997816292518"><li id="rds_08_0004__li1552111716714"><strong id="rds_08_0004__b191031956172813">Retention Period</strong>: It indicates how many days your automated full backups and binlog backups can be retained. The retention period is from 1 to 732 days and the default value is 7.<ul id="rds_08_0004__ul12918172019711"><li id="rds_08_0004__li19186201876">Extending the retention period enhances data availability.</li><li id="rds_08_0004__li15918920679">Reducing the retention period takes effect for existing backups. Any backups (except manual backups) that have expired will be automatically deleted. Exercise caution when performing this operation.</li></ul>
<p id="rds_08_0004__p19764195613270"><strong id="rds_08_0004__b144082411299">Automatic deletion policy for full backups:</strong></p>
<p id="rds_08_0004__p18951133285">To ensure data integrity, the system keeps the most recent backup that has exceeded the retention period during automatic deletions. This ensures that data within the retention period can still be restored.</p>
<p id="rds_08_0004__p1295111315289">For example, if <strong id="rds_08_0004__b16234162764116">Backup Cycle</strong> was set to <strong id="rds_08_0004__b72341827114115">Monday</strong> and <strong id="rds_08_0004__b1223442717410">Tuesday</strong> and <strong id="rds_08_0004__b11234172704119">Retention Period</strong> was set to <strong id="rds_08_0004__b20234162716415">2</strong>, the deletion behavior is as follows:</p>
<ul id="rds_08_0004__ul17957135285"><li id="rds_08_0004__li9951913192816">The full backup created on Monday is automatically deleted on Thursday.<p id="rds_08_0004__p2959131288"><a name="rds_08_0004__li9951913192816"></a><a name="li9951913192816"></a>The full backup created on Monday expires on Wednesday, but according to the deletion policy, the system retains the most recent full backup that has exceeded the retention period. So it is retained until a new backup expires. The next full backup is created on Tuesday and expires on Thursday. Therefore, on Thursday, the Monday backup is deleted and the Tuesday backup is retained.</p>
</li><li id="rds_08_0004__li4952013112814">The full backup created on Tuesday is automatically deleted on Wednesday of the following week.<p id="rds_08_0004__p695121319285"><a name="rds_08_0004__li4952013112814"></a><a name="li4952013112814"></a>The backup generated on Tuesday will expire on Thursday, but as it is the last backup, so it will be retained until a new backup expires. The next backup will be generated on the next Monday and will expire on the next Wednesday. So the full backup generated on Tuesday will not be automatically deleted until the next Wednesday.</p>
</li></ul>
</li><li id="rds_08_0004__li1823554941314"><strong id="rds_08_0004__b142651133163811">Automatic deletion policy for binlog backups:</strong><p id="rds_08_0004__p3563528121418">To ensure data integrity, the system keeps the binlog backup of the previous day when the full backup is deleted. This ensures that data within the retention period can still be restored.</p>
</li><li id="rds_08_0004__li58251931163011"><strong id="rds_08_0004__b1590142654216">Time Window</strong>: Set it to a one-hour period the backup will be scheduled, such as 01:00-02:00 or 12:00-13:00. It indicates when the backup starts, not the duration of the entire backup task. The backup duration depends on the data volume of your instance.<div class="note" id="rds_08_0004__note61331205313"><img src="public_sys-resources/note_3.0-en-us.png"><span class="notetitle"> </span><div class="notebody"><p id="rds_08_0004__p10133300318">To minimize potential impact on workloads, set the time window to off-peak hours. The backup time window is saved using the UTC time zone of your local browser. It changes with the time zone if the DST or standard time is switched.</p>
</div></div>
</li><li id="rds_08_0004__li84351625114113"><strong id="rds_08_0004__b71101536103820">Backup Cycle</strong>: All options are selected by default, but you can change it. Select at least one day of the week.</li></ul>
</p></li><li id="rds_08_0004__li4165489892826"><span>Click <strong id="rds_08_0004__b84235270695330">OK</strong>.</span></li></ol>
</div>
</div>

View File

@ -5,7 +5,7 @@
</div>
<div class="section" id="rds_08_0013__section20885393272"><h4 class="sectiontitle">Constraints</h4><ul id="rds_08_0013__ul198975617275"><li id="rds_08_0013__li118919569275">If the DB instance status is <span class="uicontrol" id="rds_08_0013__uicontrol141611723659"><b>Abnormal</b></span>, the reboot may fail.</li><li id="rds_08_0013__li89014562277">Rebooting DB instances will cause service interruptions. During the reboot process, the DB instance status is <span class="uicontrol" id="rds_08_0013__uicontrol107949271176"><b>Rebooting</b></span>.</li><li id="rds_08_0013__li1884145010295">Rebooting DB instances will cause instance unavailability and clear cached memory. To prevent traffic congestion during peak hours, you are advised to reboot DB instances during off-peak hours.</li></ul>
</div>
<div class="section" id="rds_08_0013__s22e3edfb1cdd4405b64cad650a1cf9a0"><h4 class="sectiontitle">Procedure</h4><ol id="rds_08_0013__o2173078bb42c41a0b711d64c49e2565d"><li id="rds_08_0013__li17616348171"><span>Log in to the management console.</span></li><li id="rds_08_0013__li146168481712"><span>Click <span><img id="rds_08_0013__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_08_0013__li96167481711"><span>Click <strong id="rds_08_0013__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_08_0013__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_08_0013__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_08_0013__l6b462da2019b41cd87b384de44f2bcc9"><span>On the <span class="uicontrol" id="rds_08_0013__uicontrol1861825703142627"><b>Instances</b></span> page, locate the target DB instance, or click <span><img id="rds_08_0013__image2099112213211" src="en-us_image_0000002492863369.png"></span> and then locate the target read replica. Choose <span class="menucascade" id="rds_08_0013__menucascade2061980365143037"><b><span class="uicontrol" id="rds_08_0013__uicontrol589994428143037">More</span></b> &gt; <b><span class="uicontrol" id="rds_08_0013__uicontrol1840443335143037">Reboot</span></b></span> in the <span class="uicontrol" id="rds_08_0013__uicontrol1164294695143048"><b>Operation</b></span> column.</span><p><p id="rds_08_0013__p145731244163811">Alternatively, click the target DB instance on the <span class="uicontrol" id="rds_08_0013__uicontrol163198351101"><b>Instances</b></span> page to go to the <strong id="rds_08_0013__b1062821313114">Overview</strong> page. Click <span><img id="rds_08_0013__image971191117428" src="en-us_image_0000002500427729.png"></span> and choose <strong id="rds_08_0013__b188291488115">Reboot</strong> in the upper right corner.</p>
<div class="section" id="rds_08_0013__s22e3edfb1cdd4405b64cad650a1cf9a0"><h4 class="sectiontitle">Procedure</h4><ol id="rds_08_0013__o2173078bb42c41a0b711d64c49e2565d"><li id="rds_08_0013__li17616348171"><span>Log in to the management console.</span></li><li id="rds_08_0013__li146168481712"><span>Click <span><img id="rds_08_0013__rds_modify_instance_name_en-us_topic_0192953815_image192529212293" src="en-us_image_0000001191211679.png"></span> in the upper left corner and select a region and a project.</span></li><li id="rds_08_0013__li96167481711"><span>Click <strong id="rds_08_0013__rds_modify_instance_name_b171171523153019">Service List</strong>. Under <strong id="rds_08_0013__rds_modify_instance_name_b111722319302">Database</strong>, click <strong id="rds_08_0013__rds_modify_instance_name_b15118152363010">Relational Database Service</strong>. The RDS console is displayed.</span></li><li id="rds_08_0013__l6b462da2019b41cd87b384de44f2bcc9"><span>On the <span class="uicontrol" id="rds_08_0013__uicontrol1861825703142627"><b>Instances</b></span> page, locate the target DB instance, or click <span><img id="rds_08_0013__image2099112213211" src="en-us_image_0000002492863369.png"></span> and then locate the target read replica. Choose <span class="menucascade" id="rds_08_0013__menucascade2061980365143037"><b><span class="uicontrol" id="rds_08_0013__uicontrol589994428143037">More</span></b> &gt; <b><span class="uicontrol" id="rds_08_0013__uicontrol1840443335143037">Reboot</span></b></span> in the <span class="uicontrol" id="rds_08_0013__uicontrol1164294695143048"><b>Operation</b></span> column.</span><p><p id="rds_08_0013__p145731244163811">Alternatively, click the target DB instance on the <span class="uicontrol" id="rds_08_0013__uicontrol163198351101"><b>Instances</b></span> page to go to the <strong id="rds_08_0013__b764175593510">Summary</strong> page. Click <span><img id="rds_08_0013__image971191117428" src="en-us_image_0000002500427729.png"></span> and choose <strong id="rds_08_0013__b188291488115">Reboot</strong> in the upper right corner.</p>
<p id="rds_08_0013__p695624210389">For primary/standby DB instances, if you reboot the primary DB instance, the standby DB instance is also rebooted automatically.</p>
</p></li><li id="rds_08_0013__li331123913580"><span>In the displayed dialog box, click <span class="uicontrol" id="rds_08_0013__uicontrol1228584516465"><b>Yes</b></span>.</span></li><li id="rds_08_0013__li53158765111855"><span>Refresh the DB instance list and view the status of the DB instance. If its status is <strong id="rds_08_0013__b842352706165735">Available</strong>, it has rebooted successfully.</span></li></ol>
</div>

Some files were not shown because too many files have changed in this diff Show More