本文為您介紹RAM用戶如何通過資源編排ROS創建Tair(企業版)實例,并在新實例中創建一個數據庫賬號。
創建RAM用戶并完成授權
如您已創建RAM用戶且已完成授權,可跳過此步驟。
創建RAM用戶:
訪問RAM用戶列表,單擊創建用戶。
設置登錄名稱為redis-ros-test,選擇訪問方式為使用永久 AccessKey 訪問。
單擊確定,創建RAM用戶并保存AccessKey ID與AccessKey Secret信息。
完成授權:
操作步驟
單擊快速配置ROS模板鏈接,訪問ROS控制臺。
本示例已將ROS模板填寫到示例文件中,您可以直接進行下述配置。
{ "ROSTemplateFormatVersion": "2015-09-01", "Description": { "en": "Create the Redis instance, and create a new database account.", "zh-cn": "創建Redis實例,并新建一個數據庫賬號。" }, "Parameters": { "ZoneId": { "Type": "String", "Description": { "zh-cn": "創建實例前,請確認可用區是否支持Redis資源的規格。", "en": "Before you create an instance, confirm that the Availability Zone supports the specifications of Redis resources." }, "AssociationProperty": "ALIYUN::ECS::Instance:ZoneId", "Label": { "en": "Zone ID", "zh-cn": "可用區" } }, "VpcId": { "Type": "String", "Label":{ "zh-cn":"專有網絡", "en":"VPC ID" }, "AssociationProperty": "ALIYUN::ECS::VPC::VPCId" }, "VSwitchId": { "Type": "String", "Label": { "en": "VSwitch ID", "zh-cn": "虛擬交換機" }, "AssociationProperty": "ALIYUN::ECS::VSwitch::VSwitchId", "AssociationPropertyMetadata": { "VpcId": "${VpcId}", "ZoneId": "${ZoneId}" } }, "AccountName":{ "Type":"String", "Label":{ "zh-cn":"賬號", "en":"Account" }, "Default":"ros_user" }, "AccountPassword":{ "Type":"String", "Label":{ "zh-cn":"密碼", "en":"Account Password" } } }, "Resources": { "RedisInstance": { "Type": "ALIYUN::REDIS::Instance", "Properties": { "VpcId": { "Ref": "VpcId" }, "VSwitchId": { "Ref": "VSwitchId" }, "InstanceName": "ros_example", "InstanceClass": "tair.rdb.with.proxy.1g", "ShardCount": 2, "ZoneId": { "Ref": "ZoneId" } } }, "Account": { "DependsOn":[ "RedisInstance" ], "Type": "ALIYUN::REDIS::Account", "Properties": { "AccountDescription": "Test Create Redis Account", "InstanceId": { "Ref": "RedisInstance" }, "AccountType": "Normal", "AccountName": { "Ref":"AccountName" }, "AccountPrivilege": "RoleReadWrite", "AccountPassword": { "Ref":"AccountPassword" } } } }, "Outputs": { "InstanceId": { "Value": { "Fn::GetAtt": [ "RedisInstance", "InstanceId" ] } }, "AccountName": { "Description": { "zh-cn": "賬號", "en": "Account" }, "Value": { "Ref": "AccountName" } } } }
在頂部菜單欄左上角處,選擇地域。
在創建資源棧頁面,輸入資源棧名稱。
配置下述模板參數,其余參數可保持默認,更多關于創建資源棧說明,請參見使用ROS模板創建資源棧。
選擇可用區、專有網絡、虛擬交換機。
輸入待創建的賬號與密碼。
單擊下一步。
頁面將展示訂單信息與預估費用,本示例將創建Tair內存型集群版(2G,共2分片)、按量付費實例。
確認訂單信息,單擊創建。
當資源棧信息頁簽下的狀態變為創建成功時,說明該任務已執行完成。
創建資源棧成功后,您可以單擊輸出頁簽,查看新實例ID與賬號名稱。
您可以通過OpenAPI、SDK或者在Tair控制臺,查看新創建的實例。
后續步驟
如需釋放實例,請參見釋放按量付費實例。
文檔內容是否對您有幫助?