All Products
Search
Document Center

Simple Application Server:Upgrade plan configurations

Last Updated:Jun 11, 2026

As your business grows, your server's compute resources (vCPUs and memory), storage resources (system disk capacity), and network resources (data transfer quota and public bandwidth) may no longer meet your requirements. You can upgrade the configuration of your Simple Application Server by selecting a suitable plan.

Limitations

  • Only upgrades are supported. You cannot downgrade a plan.

  • You can only upgrade an entire plan. You cannot upgrade individual resources, such as the system disk, memory, or bandwidth, separately.

  • You cannot upgrade an instance across instance families or cloud disk types.

    • You cannot upgrade an instance across the following instance families: General-purpose, CPU-optimized, Multiple Public IP, International, Storage-optimized, and previous generation.

    • For previous generation plans, you cannot upgrade across cloud disk types. For example, you cannot upgrade from an SSD cloud disk to an ESSD cloud disk.

  • You cannot upgrade an instance if its current plan is already the highest configuration available for its instance family.

    If you are using a previous generation plan, you cannot upgrade it if the current plan is already the highest configuration available for its cloud disk type.

    If an upgrade is still required, consider the following alternatives:

Impacts

Item

Description

System disk

If the plan upgrade involves resizing the system disk, you must also resize the partition and file system after the upgrade to make the new capacity available.

Bandwidth and data transfer

  • If you used part of your data transfer quota before the upgrade, the amount used is carried over and deducted from the new plan's monthly data transfer quota.

    Example

    Before an upgrade, your server has a data transfer quota of 400 GB and you have used 100 GB for the current month. After you upgrade to a plan with a 600 GB data transfer quota, your data usage for the month remains 100 GB, and the remaining quota is 500 GB.

  • Some plans do not include a fixed monthly data transfer quota. For these plans, you are not charged for data transfer. However, if you upgrade from such a plan to one that includes a fixed monthly data transfer quota, you must monitor your usage. If you exceed the monthly quota, you will be charged for the overage. For more information, see Billable items.

Workloads

The server restarts during the upgrade. We recommend that you perform the upgrade during off-peak hours.

Other

The server's public and private IP addresses, operating system, firewall, snapshots, custom images, and expiration date remain unchanged.

Billing

When you upgrade a plan, the system calculates the price difference between the old and new plans, which you must pay. The actual price difference is displayed on the upgrade page.

Billing example:

For example, you purchase Plan A for one year at $3.5/month with an 85% discount. After six months, you need to upgrade to Plan B at $4.5/month. A six-month subscription for Plan B comes with an 88% discount. The price difference is calculated as follows: (Price of Plan B - Price of Plan A) × Discount × Number of months, which is (4.5 - 3.5) × 0.88 × 6 = $5.28.

Before you begin

Before you upgrade, we recommend that you create a snapshot of your Simple Application Server's cloud disk to back up your data. For more information, see Create a snapshot.

Warning

An upgrade failure can lead to data loss. We strongly recommend that you create a snapshot to back up your data before you begin the upgrade. The snapshot creation process takes time, so please wait for it to complete.

Procedure

Before you upgrade, review the configurations of the following General-purpose plans that use ESSD cloud disks to select a target plan that meets your business needs. Plan configurations vary by instance family. The plans that are available for upgrade are displayed on the upgrade page in the console.

Instance family

vCPU

Memory

ESSD system disk

Peak bandwidth

General-purpose

2-core

2 GB

40 GB

200 Mbps

General-purpose

2-core

4 GB

50 GB

200 Mbps

General-purpose

4-core

8 GB

70 GB

200 Mbps

General-purpose

4-core

16 GB

80 GB

200 Mbps

Step 1: Upgrade the plan

  1. Go to the Servers page in the Simple Application Server console.

  2. On the server card, choose More > Upgrade.

    Note

    If the Upgrade button is disabled, the current plan is already the highest configuration and cannot be upgraded. For more information, see Q2: Why is the Upgrade button disabled?.

    image

  3. In the Precautions dialog box, read the notes and click Go to the Upgrade page..

  4. In the Plan Configuration section, select the plan to which you want to upgrade.

    You can view the configuration fee in the lower-right corner of the page.

  5. In the Terms of Service section, carefully read and agree to the terms of service.

  6. Click Buy Now. On the Pay for your order. page, confirm the order details and complete the payment as prompted.

    Return to the Simple Application Server console. The server automatically restarts after the upgrade. The upgrade is complete when the server status changes to Running.

Step 2: Resize partition and file system

If your plan upgrade involves resizing the system disk (which means the system disk capacity changes), you must resize the partition and file system to make the new capacity available. Otherwise, skip this step.

Linux

In this example, the system disk capacity is 40 GB before the upgrade and 50 GB after the upgrade.

Note

The default device name for the system disk in a Simple Application Server instance is /dev/vda.

  1. Connect to the upgraded Linux server.

    For more information, see Connect to a Linux server.

  2. View the cloud disk and partition information on the server.

    1. Run the following command to view the cloud disk information of the server.

      sudo fdisk -lu

      Because the data disk is not affected by the configuration upgrade, this example focuses on the system disk (/dev/vda). The following information is shown in the figure:adad566

      • Area ①: The capacity of the system disk (/dev/vda) after the upgrade.

      • Area ②: The Device column shows the partition name of the system disk. The System column shows the partition type of the cloud disk. Linux indicates that the partition type is Master Boot Record (MBR). The default partition name of the system disk on a Simple Application Server instance is /dev/vda1, and the default partition type is MBR.

    2. Run the following command to view the partition information.

      df -Th

      The default file system type of the system disk partition (/dev/vda1) in a Simple Application Server instance is ext4. The query result shows that the file system size is still 40 GB, which is the pre-upgrade size. This indicates that you need to resize the partition and the file system.adad56

  3. Resize the partition.

    1. Run the following command to install the growpart utility.

      The command that you need to run varies based on the operating system:

      Alibaba Cloud Linux 2/3, CentOS 7 and later

      sudo yum install -y cloud-utils-growpart

      Debian 9 and later, Ubuntu 14 and later

      1. Update the software sources.

        sudo apt-get update
      2. Install cloud-guest-utils.

        sudo apt-get install -y cloud-guest-utils
    2. Run the following command to resize the partition.

      Note

      In the command, a space is required between /dev/vda and 1. The number 1 is the partition number.

      sudo growpart /dev/vda 1

      The following figure shows a sample result. If an error is reported when you run this command, troubleshoot the issue manually. For more information, see FAQ.adad6

  4. Resize the file system.

    The default file system type of the system disk partition (/dev/vda1) on a Simple Application Server instance is ext4. This step describes how to resize an ext4 file system.

    1. Run the command that corresponds to your file system type to resize the file system.

      • ext4 file system

        sudo resize2fs /dev/vda1
      • xfs file system

        sudo xfs_growfs /dev/vda1
    2. Run the following command to check the result.

      df -Th

      The query result shows that the file system size is 50 GB, which indicates that the resize is successful. After the resize is complete, check whether your data is intact.adad566

      • If the resize is successful and the applications on the server run as expected, the operation is complete.

      • If the resize fails, roll back the disk by using the snapshot that you created. For more information, see Roll back a disk by using a snapshot.

Windows

In this example, the server runs the 64-bit Windows Server 2012 R2 operating system. The system disk (C: drive) is 40 GB before the upgrade and 60 GB after the upgrade.

  1. Connect to the upgraded Windows server.

    For more information, see Connect to a Windows server.

  2. In the lower-left corner of the Windows desktop, right-click the Start开始 icon and then click Disk Management.

    磁盘管理

    As shown in the following figure, the Disk Management window displays the unallocated capacity of the system disk after the upgrade.未分配

  3. Right-click the primary partition of Disk 0 and select Extend Volume.

    扩展卷

  4. In the Extend Volume Wizard, follow the wizard, accepting the default settings to extend the volume.

    After you complete the operation, the new space is automatically added to the original volume, as shown in the following figure.扩容完成

    After the resize is complete, check whether your data is intact.

    • If the resize is successful and the applications on the server run as expected, the operation is complete.

    • If the resize fails, roll back the disk by using the snapshot that you created. For more information, see Roll back a disk by using a snapshot.

FAQ

Q1: Can I upgrade individual resources in a plan, such as the system disk or bandwidth, separately?

A1: No. Simple Application Server instances are sold in plans. You can upgrade to a higher-tier plan, but you cannot upgrade individual resources, such as compute (vCPUs and memory), storage (system disk capacity), or network (data transfer quota and public bandwidth). However, you can resize a data disk separately. For more information, see Resize a data disk.

Q2: Why is the Upgrade button disabled?

image

A2: You cannot upgrade a plan that uses an SSD cloud disk or ESSD cloud disk if the plan is already the highest-tier configuration available.

If an upgrade is still required, consider the following alternatives:

Related documentation

  • If your system disk has insufficient storage space, you can attach a data disk as an alternative to upgrading your plan. For more information, see Attach a data disk.

  • You can resize a data disk if its storage space becomes insufficient. For more information, see Resize a data disk.