docs/content/stable/deploy/public-clouds/azure/azure-arm.md
Open the terminal on your local computer.
Run the following command:
$ ssh-keygen
The utility prompts you to select a location for the keys. By default, the keys are stored in the ~/.ssh directory with the file names id_rsa for the private key and id_rsa.pub for the public key. Using the default locations allows your SSH client to automatically find your SSH keys when authenticating.
Press ENTER to accept.
Generating a public/private RSA key pair.
Enter file in which to save the key (/home/username/.ssh/id_rsa):
After you select a location for the key, you are prompted to enter an optional passphrase which encrypts the private key file on disk.
Created directory '/home/username/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
You now have a public and private key that you can use to authenticate YugabyteDB VMs.
Your identification has been saved in /home/username/.ssh/id_rsa.
Your public key has been saved in /home/username/.ssh/id_rsa.pub.
The key fingerprint is:
a9:49:EX:AM:PL:E3:3e:a9:de:4e:77:11:58:b6:90:26 [email protected]
The key's randomart image is:
+--[ RSA 2048]----+
| ..o |
| E o= . |
| o. o |
| .. |
| ..S |
| o o. |
| =o.+. |
|. =++.. |
|o=++. |
+-----------------+
Launch Azure Cloud Shell.
Clone the following repository.
$ git clone https://github.com/yugabyte/azure-resource-manager.git
Change the current directory to the cloned GitHub repository directory
$ cd azure-resource-manager
Use the Azure CLI command to create deployments.
$ az group deployment create --resource-group <Your-Azure-Resource-Group> --template-file yugabyte_deployment.json --parameters ClusterName='<Your-Cluster-Name>' SshUser='<Your-SSH-USER>' YBVersion='2.0.6.0' SshKeypair='<Your-SSH-USER-PublicKey-File-Contents>'
After the deployment creation is complete, you can describe it as shown below.
$ az group deployment show -g <Your-Azure-Resource-Group> -n <Your-Deployment-Name> --query properties.outputs
The output displays the YugabyteDB Admin URL, JDBC URL, YSQL, and YCQL connection strings. You can use the YugabyteDB Admin URL to access the Admin portal.
Clone the following repository locally.
$ git clone https://github.com/yugabyte/azure-resource-manager.git
Create a resource group. To create a new resource group, select Resource groups from the Azure portal.
Under newly created Resource groups, select Add.
In opened marketplace, search for Template deployment (deploy using custom templates) and click Create.
Click Build your own template in the editor.
Click Load file in the Specify template section and upload the yugabyte_deployment.json file from the cloned repository.
Click Save at the bottom of the window.
Provide the required details.
Check the Terms and Condition checkbox and click Purchase.
Once deployments are completed, you can access the YugabyteDB Admin from the URL you get in the deployment output section.