Create instance
Prerequisites: an Oracle Cloud account
This example is done on WSL 2, Ubuntu 20.04.
1. Generate SSH keys
On Linux ( or WSL), use "ssh-keygen" tool to generate private and public ssh keys.
Below example, with a possible output when running
ssh-keygen :
For a detailed example on Linux system, check
SSH keys
This command has been run as a root user, therefore the keys have been generated under /root/.ssh folder.
Since I am on a WSL, and I want to copy the ssh public key on my Windows Desktop; I will have to copy the public key in a different folder on Ubuntu, and change the ownership to a non-root user of the system:
In this example, I am saving my ~/.ssh/id_rsa.pub under /home/ocee/ folder
Now, open a PowerShell with administrator rights, and access WSL files to copy the id_rsa.pub file to Windows Desktop:
Ubuntu files and folders can be access at path:
"\\wsl$\Ubuntu"
2. Create instance (OCI UI)
2.1 Go to Oracle Cloud, "Expand" the Quick Actions, and select "Create a VM Instance":
2.
Provide a name to your "Always Free Eligible" instance.
You can choose the compartment (here the root compartment). At section "Configure placement and hardware", you are able to change the OS image by clicking "Edit":
You can also change the Availability Domain and choose a fault domain at this step.
As you can well notice, I have chosen an Ubuntu 20.04 image. Notice that all images are in "Always Free Eligible"
3.
Add SSH Keys
Go to "Choose public key files" and upload the id_rsa.pub file (we discussed about it at previous point, "Generate SSH Keys")
4.
Create the instance
If you like, you can change the boot volume size, however, the "Always Free Eligible" instances are deployed with 46.6 GB (pretty decent, if you plan to use an instance for deploying only)
Once you have done all the above steps, your instance will be in "Provisioning" stage.
As soon as the provisioning is done, your instance will be available and running:
At this stage, you will be provided a Public IP Address and an Username "ubuntu"
Now you can login to this instance from a terminal, via ssh:
Let's test it from PowerShell, under WSL(from obvious reasons, the Public IP has been hidden):
The instance "deploymentmachine" is now responsive and can be accessed.
3. Save the SSH keys of "deploymentmachine"
As we have already seen, if you want to create an instance in the Cloud UI, you will have to provide the public ssh keys of machine from which you want to perform the actions (or in our case, logging in from "deploymentmachine" to the newly created instance via ssh)
If you do things programmatically, you can get away with it (since you just provide the path of your ssh keys as a variable). But, if you want to do it from the Cloud UI, you will have to provide the "deploymentmachine" public ssh keys.
a) Save you public ssh keys under a non-root folder (/home in my case), and change ownage to an non-root user:
b) Save it on your local machine with scp command (in my case, Ubuntu on WSL)
c) ... and once again, let's put it on the Desktop:
And now you can create new instances to which you can login via ssh from the "deploymentmachine", just by adding in the Cloud UI the public ssh keys.
Last updated