Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Sign in
Your Saved List Become a Channel Partner Sell in AWS Marketplace Amazon Web Services Home Help

About username and login page

  • By Diego Sayron
  • on 10/11/2022

Open your browser like
http://yourIP/admin

Magento panel username and password:
(READ the Magento's page at aws marketplace for more details!!!)
User administrator: user (fixed, default)
Password: you must take the password of your instance by clicking:
- select your instance - Actions - Monitor and troubleshoot - Get System Log

Scroll to the about 25% above the bottom of the log, you'll find something like this (inside this kind of box):

###################################################
# #
# Setting Bitnami application password to 'MRWJEUOAeF6s' #
# (the default application username is 'user') #
# #
###################################################

If you are not getting absolutely nothing in the browser, log in via SSH, don't forget your keypair and set the username as 'bitnami'.

After logged in, maybe you need to allow the access to HTTP/HTTPS (via SSH, using curl http://localhost, I faced the error Connection refused):
$ sudo iptables -A INPUT -i eth0 -p tcp --dport 80 -j ACCEPT
$ sudo iptables -A INPUT -i eth0 -p tcp --dport 443 -j ACCEPT

After this, everything will be okay.


  • By Rodrigo
  • on 02/14/2025

Thanks! This was it!