1. 程式人生 > >天翼雲 RDS數據庫操作

天翼雲 RDS數據庫操作

info 創建 post 數據庫導出 技術分享 creat 鏈接地址 span sql文件

1.RDS數據庫創建好之後點擊RDS實例管理找到已下信息

官方文檔 -1:http://www.ctyun.cn/help/qslist/567

官方文檔 -2:http://www.ctyun.cn/help/qslist/544

如圖:

IP : 鏈接地址一列下方對應的是IP:POST(ip:端口),獲取冒號左邊的數據就是IP地址

HOST : 端口號(獲取(IP:POST)冒號右邊的數據就是端口號)

user : 天翼雲默認RDS數據庫用戶名為root

password : 就是創建RDS實例時創建的密碼

技術分享圖片

2.RDS數據庫不對外展示,只有內網ip可以操作RDS數據庫實例。打開一個安裝過mysql數據庫的天翼雲命令窗口。

[root@ecs-7bec-0002 ~]# mysql -h<IP> -P<HOST> -u<user> -p<password>    //<紅色> 是對應的值,命令不包括<>
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 95366
Server version
: 5.6.30-log MySQL Community Server (GPL) Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current
input statement. mysql>

3.RDS數據庫導出sql文件命令,直接在linux命令窗口輸入

mysqldump --databases <數據庫名稱> --single-transaction --hex-blob --set-gtid-purged=
OFF --no-create-info --skip-triggers -u <數據庫用戶名> -p -h <數據庫rds內網地址> -P <rds數據庫端口> -r <生成的文件路徑>

天翼雲 RDS數據庫操作