Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

 

Add_workflow_for_techpubs
AUTH2UserResourceIdentifier{userKey=8a00a02355cd1c2f0155cd26cb41059c, userName='null'}
AUTH1cclemetsonUserResourceIdentifier{userKey=8a00a0c85b2726c2015b58aa779d0003, userName='null'}
JIRAIDAUTHCHOR-3623017
REV5cclemetsonUserResourceIdentifier{userKey=8a00a0c85b2726c2015b58aa779d0003, userName='null'}
REV6cclemetsonUserResourceIdentifier{userKey=8a00a0c85b2726c2015b58aa779d0003, userName='null'}
REV3rysj
REV1lisa-neyen

IN PROCESS

The SWe Lite supports up to 4 vCPUs and 4 Gib of RAM (memory). To increase the number of vCPUs and memory in the SWe Lite system after initial installation, edit the VM settings and reboot. See instructions below, according to the installation type.

SWe Lite on KVM Hypervisor

SWe Lite on Microsoft Hyper-V

 

SWe Lite on VMware ESXi

Access the desired VM with the desired SWe Lite instance.

Click Edit virtual matchine settings

In Memory Size, update the amount of memory.

Change the number of vCPUs...

Reboot the VM.

Continue on with Running Initial Setup?

UserResourceIdentifier{userKey=8a00a02355cd1c2f0155cd26cef30cd0, userName='null'}
REV1UserResourceIdentifier{userKey=8a00a02355cd1c2f0155cd26c9d6032b, userName='null'}
REV2UserResourceIdentifier{userKey=8a00a0c86062358001607df6f45d0013, userName='null'}

CSS Stylesheet
img.confluence-embedded-image { display: inline-block !important; }
Panel

In this section:

Table of Contents
maxLevel4

Info

For details on hardware and software requirements, refer to:

 

Adding vCPUs and Increasing RAM for 
Spacevars
0product3
(KVM, Microsoft Hyper-V, VMware ESXi Hypervisors)

Spacevars
0product3
 on KVM 

Note

The VM instance must be powered down before updating memory and vCPU.

  1. Login into a terminal access software (such as Putty), and log into the KVM Hypervisor.
  2. Start the Virtual Machine Manager.
  3. From the list, click on the applicable VM instance.
  4. Power down the VM.
  5. Select Edit > Virtual Machine Details
  6. Select View > Details or click the Image Addedicon
  7. From the menu, click CPUs.The 

    Spacevars
    0product3
    supports 1, 2, 4 or 10 vCPUs.
    Pagebreak
    Caption
    0Figure
    1Add vCPUs

    Image Added

  8. Click Apply.
  9. From the menu, click Memory. Each 

    Spacevars
    0product3
    instance with 1 vCPU requires 1 GiB (1024 MiB) RAM; this amount is increased according to the number of vCPUs. Refer to SBC SWe Lite Hardware and Software Requirements.
    Caption
    0Figure
    1Update Memory

    Image Added

  10. Click Apply.
  11. Start the VM instance. The 
    Spacevars
    0product3
    is configured with the updated values.

To verify the updated values, see Verify Update on SWe Lite.

Spacevars
0product3
 on Microsoft Hyper-V

Note

The VM instance must be powered down before updating memory and vCPU.

  1. Launch Hyper-V Manager from the Windows Start menu.
  2. Power down the VM in which you will be adding vCPUs and RAM.
  3. Right-click on the desired VM instance and select Settings.
  4. Click on Memory. Each 

    Spacevars
    0product3
    instance with 1 vCPU requires 1 GiB (1024 MiB) RAM; this amount is increased according to the number of vCPUs. Refer to SBC SWe Lite Hardware and Software Requirements.
    Caption
    0Figure
    1Add memory

    Image Added

  5. Enter the desired memory and click OK.
  6. Click on Processor. The 

    Spacevars
    0product3
    supports 1, 2, 4 or 10 vCPUs.

  7. Enter the desired virtual processors and click OK.

    Caption
    0Figure
    1Add vCPUs

    Image Added

  8. Start the VM instance. The 
    Spacevars
    0product3
    is configured with the updated values.
  9. To verify the updated values, see Verify Update on SWe Lite.

 

Spacevars
0product3
on VMware ESXi

Add a vCPU and increase RAM on the VM instance as follows:

Note

The VM instance must be powered down before updating memory and vCPU

  1. Access vSphere Client.
  2. Click on the applicable VM instance
  3. Power down the VM.
  4. From the Getting Started tab, click Edit virtual machine settings.
  5. From the Hardware tab, click Memory.

     

    Caption
    0Figure
    1Add Memory

    Image Added

  6. Update the desired memory size. Each 
    Spacevars
    0product3
    instance with 1 vCPU requires 1 GiB (1024 MiB) RAM; this amount is increased according to the number of vCPUs. Refer to SBC SWe Lite Hardware and Software Requirements.
  7. From the Hardware tab, click CPUs.

    Caption
    0Figure
    1Add vCPUs

    Image Added

  8. Update the desired number of vCPUs. The 
    Spacevars
    0product3
    supports 1, 2, 4 or 10 vCPUs.
  9. Click OK.
  10. Start the VM instance. The 
    Spacevars
    0product3
    is configured with the updated values.

To verify the updated values, see Verify Update on SWe Lite.

Increasing VM size for SWe Lite (Azure)

Info

For Virtual Machine Requirements, refer to Virtual Machine Requirements - Microsoft Azure.

Increase VM Size via Azure Portal

  1. Connect to the Azure portal. Refer to portal.azure.com.
  2. From the menu, click Virtual Machines.
  3. From the list, click the checkbox next to the desired VM.
  4. From the menu, click Stop. This shuts the VM down.
  5. Click on the desired VM. 

     

    Caption
    0Figure
    1Select VM

    Image Added

  6. From the menu, click Size.

    Caption
    0Figure
    1Click Size

     Image Added

  7. In the Search box, enter the desired size. Recommended VM sizes are listed here: Virtual Machine Requirements - Microsoft Azure.

    Caption
    0Figure
    1Select Recommended Size

    Image Added


  8. Click on one of the sizes presented.

  9. At the bottom of the page, click Resize.

Increase VM Size via Azure PowerShell

Perform these steps via PowerShell:

  1. Access PowerShell. Refer to PowerShell documentation.
  2. Run the following commands (per Azure RM PowerShell module):

    Code Block
    ### Azure RM ###
    Stop-AzureRmVM -ResourceGroupName $resourceGroup -Name $vmName -Force
    $vm = Get-AzureRmVM -ResourceGroupName $resourceGroup -VMName $vmName
    $vm.HardwareProfile.VmSize = "<newVMSize>"
    Update-AzureRmVM -VM $vm -ResourceGroupName $resourceGroup
    Start-AzureRmVM -ResourceGroupName $resourceGroup -Name $vmName
    

Verify Update on
Spacevars
0product3

  1. Connect to the applicable SWe.
  2. In the WebUI, access System > Overview.
  3. Verify the number of Virtual CPUs and Total System Memory.

Pagebreak
Caption
0Figure
1Verify CPU and Memory Updates - Example for KVM

Image Added

Pagebreak