views:

127

answers:

2

I have set up an Amazon EC2 instance and am able to SSH into it. Can anyone please tell me how I could allow additional users to SSH into this instance from a different location?

Max.

+1  A: 
  1. Create additional users at a *nix command prompt

    useradd

  2. Create a new rule in the security group which has been applied to your instance, enabling ssh for the public IP Range of your remote user

Richard Quinn
A: 

For specific instructions check out: http://developer.amazonwebservices.com/connect/entry.jspa?externalID=1233.

1. Max.

user7289