Get Started¶
Sign up for Intel® Tiber™ AI Cloud. Sign in. Launch a compute instance.
Tip
To explore the compute platform in a learning node only, try Quick Start.
Create Account, Sign In¶
Visit the Intel® Tiber™ AI Cloud Console.
Choose Create an Account or Sign in.
Create an account with your email address. This becomes the account ID.
Click Create an Account.
Follow instructions in the dialog and complete required fields.
Sign in with the email address you used to register your account.
View the previous figure.
In the Email field, enter your email address.
Click Sign In.
In the next screen, enter your password and press <Enter>
Initiate Instance¶
Log in to Intel® Tiber™ AI Cloud.
In the left side menu, click Compute -> Instances.
In the Instances tab, click Launch instance.
Launch Instance¶
Next, complete a form named Launch a compute instance.
From Instance family, select your choice.
From Instance Type, select your choice.
Note
Optionally, select Compare instance types to compare instances’ specifications.
From Machine image, select your choice.
Tip
This option may be pre-selected based on your choice of Instance family.
In Instance name, enter a name in lowercase. Optional: Use hyphens.
You may use One-Click connection. If yes, skip to the next step.
Continue below if you wish to upload an SSH Key.
Under Public Keys, select the checkbox for your public key.
Tip
If you wish to connect using SSH public keys, follow the instructions below.
One-Click connection. Select the radio button to enable single-click access for future use.
Note
Selecting One-Click connection is only performed once. You cannot add or remove this functionality after you launch an instance.
Click Launch.
Continue in next section.
Connect to Instance¶
View your instance in the Instances tab.
Assure your instance State shows Ready.
Tip
See Instance States for more details.
Choose a method to connect to your instance:
One-Click Connection¶
Using this method, you connect to your instance in a JupyterLab environment.
Navigate to the Instances tab.
Wait until your instance name shows Ready.
Click on your instance name.
Click Connect.
Optional: Click on the Connect button in the row where your instance appears. A JupyterLab environment will launch.
Tip
You must select “One-Click connection” before launching an instance for this option to be available.
Select the Terminal icon to access your instance.
You’re all set. Start exploring.
Set Up SSH Keys¶
Configure SSH keys in two steps. First, create an SSH key locally. Second, upload it to your account. Setting up an SSH Key is a one-time task.
Warning
Never share your private keys with anyone. Never create a SSH Private key without a passphrase.
Create an SSH Key¶
Launch a Terminal on your system to generate an SSH Key. For MacOS* systems, follow the Linux OS instructions.
Click the tab for your operating system (OS).
Launch a Terminal on your local system.
To generate an SSH key, copy and paste the following to your Terminal.
ssh-keygen -t rsa -b 4096 -f ~/.ssh/id_rsa
If you’re prompted to overwrite, select No.
Click the copy icon. Then paste this command in your Terminal to show the generated SSH key.
cat ~/.ssh/id_rsa.pub
Continue below.
Launch a new PowerShell window on your local system.
Optional: If you haven't generated a key before, create an .ssh directory.
mkdir $env:UserProfile\.ssh
Copy and paste the following to your terminal to generate SSH Keys
ssh-keygen -t rsa -b 4096 -f $env:UserProfile\.ssh\id_rsa
If you are prompted to overwrite, select No.
Click the copy icon. Then paste paste this command to show the generated SSH key.
cat $env:UserProfile\.ssh\id_rsa.pub
Continue below.
Upload an SSH Key¶
In the Intel® Tiber™ AI Cloud, click on Compute > Keys.
In the Keys tab, click Upload.
Enter a name for your key in Key name.
Paste the contents of your SSH key in Key contents.
Select Upload.
Verify that your SSH key appears in the table.
Local Terminal Connection¶
Connect via Terminal from your local machine.
Under Instance Name, click on your instance name.
Select How to Connect via SSH.
A new pop-up dialog appears:”How to connect to your instance”.
Continue in next section.
Follow the onscreen instructions in the dialog.
Select your operating system (OS).
Follow instructions.
Copy the command shown to connect to your instance.
Open a Terminal.
In the Terminal, paste the command you copied and press enter.
If prompted to add your public key, select Yes.
After launching instance, run command to confirm Ubuntu 22.04 (or other).
cat /etc/os-release
Next Steps¶
Learn how to manage your instance
Apply a Load Balancers to your instance
Start exploring use cases in Tutorials.
Optional Steps¶
Access via Corporate Network¶
If you’re connecting to Intel® Tiber™ AI Cloud from your company Corporate Network, you’ll need to update SSH config file.
Note
If you connect using PowerShell on Microsoft Windows Operating System, you must install gitforwindows.
SSH Configuration is an one-time task.
Your SSH configuration file is in a folder named
.ssh
under your user’s home folder. If the file is not present, create one.Copy and paste the following to SSH config file:
~/.ssh/config
Host 146.152.*.* ProxyCommand /usr/bin/nc -x PROXYSERVER:PROXYSPORT %h %p
Host 146.152.*.* ProxyCommand "C:\Program Files\Git\mingw64\bin\connect.exe" -S PROXYSERVER:PROXYSPORT %h %p
From your Lab Administrator, get PROXYSERVER and PROXYPORT in your Corporate Network for SSH, NOT for HTTP/HTTPS Proxy.
Replace PROXYSERVER and PROXYPORT with the information you received from your lab administrator and save the SSH Config file.