2

I have added my SSH Public and Private keys. But I'm still getting Permission Denied on "bzr info lp:bzr"

What am I missing? I've attached a screenshot of my Launchpad, Pageant, and the Console.

enter image description here

1 Answers1

2

This happens when:

  • You told Bazaar your Launchpad username with bzr lp-login USERNAME
  • ... but, Bazaar could not verify it (your access to USERNAME on Launchpad)

You can see your Launchpad username configuration with the command:

$ bzr config
bazaar:
  [DEFAULT]
  launchpad_username = the-username-you-set-with-bzr-lp-login

You can either fix your ssh key setup (see this discussion), or you can remove the launchpad_username setting with:

bzr config --remove launchpad_username --scope=bazaar

After this bzr info lp:bzr should work, unless you have other issues (for example with proxy server, network, firewalls, or others).

Community
  • 1
  • 1
janos
  • 120,954
  • 29
  • 226
  • 236
  • 1
    Thanks! I finally found the culprit! It's the "ssh.exe" of both Cygwin and the Git. What I did was removed them from the environment variable PATH – Paul Mark Castillo Mar 05 '14 at 01:51
  • To "fix your ssh key" login to [launchpad.net](https://login.launchpad.net/ssh-keys) and add you ssh public key (copy&paste the text from `cat ~/.ssh/id_rsa.pub`). To create a new id_rsa* keypair you can use `ssh-keygen` and just hit enter at all prompts. – hobs Jul 07 '18 at 21:30