Manage Instance¶
Learn basic user operations to manage a compute instance after creating one. Available Instance Types are bare metal and virtual machines (VM). To view a full description of compute services, see Compute.
Tip
Follow Stop Instance to temporarily pause your instance.
Instance States¶
The State reflects the status of a compute instance.
Provisioning¶
After launching an instance, State shows Provisioning in the dashboard.
Wait until State shows Ready.
Ready¶
When State shows Ready, you may launch your instance.
A connection is established with the host.
If desired, continue at Connect to Instance.
Stop Instance¶
After you launch an instance and its Status shows Ready, you may wish to stop the instance.
In the Instances tab, scroll to show the Actions column.
Under Actions, click the Stop button to pause your instance.
Tip
When the confirmation dialog appears, follow the instructions.
Click Stop to pause your instance.
Restart Instance¶
After your instance is stopped, it shows a Start button.
Click Start to restart your instance.
Tip
When the confirmation dialog appears, follow the instructions.
Click Start.
In the State column, your instance shows Starting.
Wait until your instance State shows Ready again.
Click on your instance under Instance Name.
Select Details to display options on how to connect.
Alternatively, choose a method to Connect to Instance.
Edit Instance¶
Navigate to Compute > Instances from main console.
In the Instances tab, assure that your instance appears.
With your instance, select Edit under Actions.
In the page “Edit Instance”, modify settings as desired.
Delete an Instance¶
Navigate to Compute > Instances from main console.
Under Actions, select the Delete button.
At the dialog “Delete instance”, select Delete to confirm your choice.
Select Cancel if you do not wish to delete your instance.
Optional - Update OS and Add Packages¶
While in an SSH session, you can add Ubuntu 22.04 packages and update your OS.
To update and upgrade your OS, enter one command at a time.
sudo apt-get update -y sudo apt-get upgrade -y
Add net-tools or curl
sudo apt-get install net-tools
sudo apt-get install curl