2

I have a FiWare GE instance setup, with a security group, key, and IP all configured. I also have Putty setup to allow me to connect to the instance. My problem is that when I connect I get asked for login information. I've tried my login credentials for Fi-Ware but that doesn't work. There are no other users associated, so I'm not sure what I'm supposed to use. There doesn't seem to be any (obvious) way to create users and associate them with an application either.

Are there default login credentials I should be aware of? Do I need to make a user specifically for my instance?

Alex Kulinkovich
  • 4,408
  • 15
  • 46
  • 50
Chris Paton
  • 5,113
  • 4
  • 41
  • 52

3 Answers3

1

You should use PuTTygen to generate the .ppk file to access through PuTTy (load your .pem, generate the .ppk file and save on your harddisk).

With this file, you open PuTTy, go to Connection, SSH, Auth and load your .ppk file

I hope this can be useful for

jjmartinez
  • 779
  • 5
  • 20
  • 37
  • Hi jjmartinez. I've already done that, but when I try to connect I'm still getting asked for a username and password. I've resorted to using MINGW in the meantime. – Chris Paton Nov 26 '14 at 12:26
  • Yup, tried that. It then asks for a password and I've no idea what that password is meant to be. – Chris Paton Nov 26 '14 at 15:53
  • Without pass. If you are generate correctly the ppk file, you only need to put "root", without password – jjmartinez Nov 26 '14 at 15:54
  • To generate the ppk file, only need to load the .pem and then click on "Save private key" – jjmartinez Nov 26 '14 at 16:10
1

Depending on the VM; sometimes 'root' is not the right username. The documentation, sometimes lacks here. If the VM is a Ubuntu base, then 'ubuntu' would be the username.

And as mentioned before, make sure that you have the right 'read' rights for the keys on your computer.

0

It it just a problem about the permissions that you have in the .pem file. You just need to change it to 600 (u+rw only)

 chmod 600 <file>.pem

And then try to connect again with your ssh client.

 ssh -i <file>.pem root@<IP of the VM>
flopez
  • 620
  • 1
  • 4
  • 9
  • While that does work for me, my question was about using Putty. I'm also using Windows, so chmod isn't applicable. Thank you for your response though! – Chris Paton Nov 24 '14 at 14:25