Get Started¶
Get started with Intel® Tiber™ AI Cloud. Sign up. Sign in. Launch.
Tip
Learn more about Account Types
Overview¶
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>
Choose a workflow:
Launch Learning - Complete a few steps to launch a node in the SLURM cluster.
Launch Instance - Complete all required steps to launch a hardware instance.
Launch Learning¶
Quickly launch a learning node in the SLURM cluster.
Note
No SSH key is required.
Visit the Intel® Tiber™ AI Cloud Console.
In the menu at left, click Learning.
Click Launch to open a learning notebook.
Note
You may also click Learn more to view a learning module overview.
After choosing a Learning module, choose an option:
Click Launch to run any Jupyter Notebook.
Click Launch JupyterLab and follow the next step.
Consider viewing related documents.
Cloud Credits and Coupons¶
Select the User Profile pull-down menu.
Select Cloud credits.
Cloud Credits details will appear.
Redeem Coupon¶
To obtain cloud credits in your account:
Follow step one of previous section.
Click on Redeem coupon.
Enter a coupon code.
After the coupon is validated, Cloud Credits shows cloud credits details.
Tip
Due to latency, the code may require a few minutes to appear.
Launch Instance¶
Configure your account to launch an instance from the hardware catalog.
Note
Uploading an SSH key is required.
Set Up SSH Keys¶
Configuring SSH keys requires 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.
Launch a compute instance¶
Log in to Intel® Tiber™ AI Cloud.
In the left side menu, click Catalog > Hardware.
In the Hardware tab, select an instance from the options.
Configure an instance¶
Select options from pull-down menus to configure your 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.
In Instance name, enter a name in lowercase. Optional: Use hyphens.
Under Public Keys, select checkbox for SSH public keys added previously.
Optional: One-Click connection. Select the radio button to enable single-click access for future use.
Note
Currently, One-Click connection is only available in selected regions.
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.
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.