2

Hey guys, I am very new to linux, and amazon-ec2. I wanted to put a quick server. For some reason, when I sign in with my key pair, it prompts me for a username, I input ec2-user, and I'm in. The problem is that I don't have root access (and can't find the root password). I need to install screen to run the server in the background, and also create a new user, that doesn't have root, to run the server. Neither of which I can do without root.. Any help?

Edit: I am using Basic 32-bit Amazon Linux AMI 2010.11.1 Beta as the 'AMI'.

Thanks, Max

Jess
  • 389
  • 1
  • 6
  • 16

3 Answers3

3

The Amazon Linux AMI User Guide explains that you can use sudo to run commands as root e.g. sudo whoami:

http://ec2-downloads.s3.amazonaws.com/AmazonLinuxAMIUserGuide.pdf

How do I get root SSH access on my Amazon Linux AMI instance?

The Amazon Linux AMI does not allow remote root SSH by default. You should specify a keypair at instance launch and login as ‘ec2‐user’ using your keypair to access the command line. This user has sudo access by default to allow you to run root actions. If you wish to enable remote root login, please be aware that it is significantly less secure than relying on keypairs and a secondary user.

dialt0ne
  • 3,065
  • 20
  • 27
1

It depends on the Linux image you're running, but generally you can sudo from the initial login user account to gain root privileges.

Mike Scott
  • 7,993
  • 31
  • 26
0

Has worked for me connecting to ssh -i jose.pem root@ec2-46-137-38-52.eu-west-1.compute.amazonaws.com

jruzafa
  • 141
  • 4