Skip to main content

Solving SSH connection issue with Linux Virtual Machine in Azure


I created a Linux Virtual Machine in Azure, but connecting to it through SSH was a real nightmare. I was always getting the below error -

"Permission denied (publickey)." 

After lot of googling, binging and shooting in the dark, this is how I fixed the problem:

  • Create a new ssh key by running below command. 
          PS: Do not change the default name or path of generated ssh key.
          ssh-keygen -t rsa -b 2048

          Generating public/private rsa key pair.
          Enter file in which to save the key (/c/Users/<Username>/.ssh/id_rsa):
          Enter passphrase (empty for no passphrase):
          Enter same passphrase again:
          Your identification has been saved in /c/Users/
<Username>/.ssh/id_rsa.
          Your public key has been saved in /c/Users/
<Username>/.ssh/id_rsa.pub


  • In Azure portal. Click on your Virtual Machine name, 
    • Select 'Reset Password -> 'Reset SSH' -> 'Reset SSH public key'
    • Type Username for VM
    • Open 'id_rsa.pub' public key in an editor, copy it's content and paste it in SSH public key text box.  
                    PS: Remember to remove any blank space from the pasted content.

  • Now try connecting again to VM from command line tool such as Git Bash
    • ssh <user>@<public_ip_of_your_linux_vm>
    • It worked! This time I saw the below output.
                 Welcome to Ubuntu 16.04.4 LTS (GNU/Linux 4.15.0-1014-azure x86_64)

                 * Documentation:  https://help.ubuntu.com
                 * Management:     https://landscape.canonical.com
                 * Support:        https://ubuntu.com/advantage

                  Get cloud support with Ubuntu Advantage Cloud Guest:
                  http://www.ubuntu.com/business/services/cloud

                  0 packages can be updated.
                  0 updates are security updates
                  .......................
                  .......................



 

Comments

Popular posts from this blog

Solving PyCharm bug: "Python helpers are not copied yet..."

I have been using PyCharm Professional to run and debug Python code from my Windows machine to a remote Linux device. There are some other tools available for the same purpose (e.g. Python Tool for Visual Studio 2017). But in my opinion, PyCharm Professional stands out among its counterparts as it comes with a "All Batteries Included" setup. Once you configure remote Python interpreter in PyCharm, then it works out of the box. However, today after upgrading to PyCharm Professional 2018.2.1, I could not run my Python script on remote device. The execution always failed with below error - "Error running 'hello': Python helpers are not copied yet to the remote host. Please wait until remote interpreter initialization finishes." To solve this issue, I had to remove the ".pycharm_helpers " folder from the remove device and then restart PyCharm so that the folder is re-created and files are copied again. Here are the steps with comma...

Customized Crosshair with OxyPlot charting library

I am using Oxyplot to draw heatmap for a WPF project and needed to draw a crosshair that moves according to user clicks. Since I couldn't find any good example or documentation on the topic, I made a small hack by using LineAnnotations and by over-riding Oxyplot mouse click event. Here is the sample code using WPF with MVVM pattern- MainWindow.xaml <Grid>         <oxy:Plot x:Name="CrossHairPlot">             <oxy:Plot.Axes>                 <oxy:LinearAxis Key="MyXAxis" Position="Bottom" IsZoomEnabled="False"/>                 <oxy:LinearAxis Key="MyYAxis" Position="Left" IsZoomEnabled="False"/>                 <oxy:LinearColorAxis Key="...

Fixing git error: "remote: Repository not found"

I was trying to modify one of my private repository in GitHub and ran into the below error - git clone https://github.com/<user>/DocTest.git Cloning into 'DocTest'... remote: Repository not found. fatal: repository 'https://github.com/<user>/DocTest.git/' not found After lot of trial and error attempts, I figured out that my Windows 10 PC had stored github user credentials, so it didn't let me clone a private repository which was not accessible to the saved user. This is how we can clear any saved cache - Open Control Panel from the Start Menu Select User Accounts Select "Manage your credentials" in the left hand menu Delete all user credentials related to Git or GitHub After doing that, the error was gone and I was able to clone the repositories.