• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Issue Wordpress Edition (AWS) accounts

Geoff

New Pleskian
Hi,

I may seem like a daft question. I am 100% new to AWS and images etc. However, I expected that once the image was create I would have full root access, not a user account called 'centos'. Is there a default Root account password? I need to create additional accounts with elevated privileges and I feel a little stuck.

Am I being thick? :)

Thanks in advance!
 
Due to security restrictions on AWS instances, the command sudo is used for obtaining root privileges.
The password for the user root is not set by default.
 
^ what Igor said.

AWS EC2 doesn't have root user enabled by default, but you can enable it.

To do so;

- Connect to user via ssh
- Gain root with sudo command
- Set root password with passwd command OR apply public key to authorized_keys
- Modify /etc/ssh/sshd_config and set PermitRootLogin yes, as well as allow PasswordAuthentication if needed
- Reload ssh service
 
Back
Top