Bitnami package for Magento
Bitnami by VMware | 2.4.7-9-r10 on Debian 12Linux/Unix, Debian 12 - 64-bit Amazon Machine Image (AMI)
About username and login page
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.
- Leave a Comment |
- Mark review as helpful
Great quick startup package
Recommended t3a medium instance seems to work well. t2 doesnt work. Took about hour or so for /admin to work. Having built Magento from scratch it can be quite painful and time-consuming. This is a great AMI for getting a Magento installed on a server quickly
Honestly, its a 5/5 and Bitnami is just amazing
I have been working with Magento for over 5 years and I don't think I could do without it. Its a piece of software that is editable at almost every level and that makes it a very very strong product. You can tweak it to resemble any other product out there so there is no use comparing Magento to any other product since it can be edited easily to look like any other product out there. Honestly I do not see the sense in rating software products since they can always be tweaked to fit a different narrative especially when the parent developer allows it and Magento gives you access to almost every level, for free. It deserves more than a 5/5. It must have taken thousands of hours to come up with such a product and be able to offer it for free. At the same time, the product is always going through improvements so a rating that was done yesterday does not mean that it reflects tomorrow's release of the same product.
Works fine but be patient
The instance takes a little bit time to start (around 30 minutes in a t3.small instance, dev purpose) before you can even connect through ssh.
But now, the CMS seems to works fine. The authentication to the back-office worked as expected.
Did not try the others functionality yet but for now everything is ok.
Thank you bitnami.
Excellent Work.
Magento Certified by Bitnami is a Kickstart for Your Store, it Comes Packed With all The Best Practices Out of Box so don't have to worry about Performance, Security and Resources. It's Better than Many Premium cloud formation Templates. I am Very Happy I USED it and would recommend everyone.
works fine
works fine, within 1 hour I was able to set the site for a friend of mine. Bitnami documentation is very helpful.
Works great, you need to pay attention to the details to get your passwords
Very very nicely done, it works just fine out of the box. It took me quite a while to figure out how to get the password is the reason some else gave 1 star.
I've pretty much made every mistake possible while trying to install this image, all were user errors, the image is perfect!
So let me explain it to make life easier:
1. Before you install the image, create a Key Pair in Amazon EC2, save the .PEM file which will be used to login to the server (SSH console), without this file you can't login.
Instructions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html#having-ec2-create-your-key-pair
2. After installing the image, you can login to the SSH console for the server using the PuTTY application (NOTE: there is no "password", only a username and a digital signature file from step 1):
Configure PuTTY to use your .PEM file that you saved in step 1 (you will actually need to convert the .PEM file to a .PPK file, VERY easy see instructions link). This file will be your "password"
Login username: bitnami
Instructions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/putty.html
3. Now you need your "application" password which is used for Magento admin , MySql and PhPAdmin. To get this you will need to open your "System log" from the Amazon EC2 instance -> Actions -> Instance Settings -> Get Instance Log. Scroll down and you should see something like this:
[ 20.415342] bitnami[1216]: #########################################################################
[ 20.421257] bitnami[1216]: # #
[ 20.431029] bitnami[1216]: # Setting Bitnami application password to '1GvPd6mWaKZn' #
[ 20.439698] bitnami[1216]: # (the default application username is 'user') #
[ 20.446963] bitnami[1216]: # #
[ 20.451164] bitnami[1216]: #########################################################################
Save this "password" and the default username is 'user'
NOTE: You have 24 hours to retrieve this password from the system log after the machine FIRST starts, so it quick otherwise the log will be overwritten and the password is lost (you can reset it but it's a PITA).
Instructions: https://www.youtube.com/watch?v=xwg6Rr0lmoE
Once you've got these password, now you can change them and login to the Magento Admin interface etc etc.
Instructions: https://docs.bitnami.com/aws/apps/magento/#first-steps-with-the-bitnami-magento-stack
I will keep updating this review as I get further into it, but so far so good. I hope this helps folks who're struggling with the "passwords".
Solid install of magento with apache on Ubuntu; tiny permission problem/maybe email problem?
The install behaved as described immediately upon installation. The instructions for removing the bitnami corner banner were clear and worked fine. I used this as an upgrade from a previous installation at an outdated level of magento, so I experienced some glitches that were due to the version difference, no skin off Bitnami. The only small point that seemed to be a characteristic of this Bitnami installation is that the apache httpd is running under user "daemon" but a number of the configuration directories that Magento needs to save files in were owned by user "bitnami" so I was getting errors from Magento not being able to save configuration changes until I ran chown on the appropriate directories in ~bitnami/apps/magento/htdocs to change the owner to daemon. And right now I am in the midst of trying to configure email so the Magento install can email receipts to customers, but I haven't quite figured that out yet. Other than that, everything has been very solid with this install. I am also going to want to figure out how to run CXS or some other virus/intrusion watchguard program(s) on the running images, maybe something like LFD to block repeated failed logins. Bitnami might want to consider making some of those things standard on images like this that are used for fairly high-security end uses. But overall: Thanks, Bitnami, for your nice work.
Follow-up (Oct 17): I did eventually get Magento emailing to customers to work, but it was quite a bear, involving changes to the code in app/code/core/Mage/Core/Model/Email/Template.php and app/code/core/Mage/Core/Model/Email/Queue.php to use Zend_Mail_Transport_Smtp in place of Zend_Mail_Transport_Sendmail. I am not sure if this difficulty was an issue with Bitnami's configuration of this Magento install, or my not understanding how I was supposed to set up email, or there being another Magento module I should have installed in order to set up outgoing email of SMTP. But I did eventually get it working by modifying those two files.
Another important tip: Don't forget to put your SSL certificates on the new instance; this image uses self-signed certificates out of the box, which are surely not appropriate for e-commerce.
Not sure yet, but I think i'm happy
The truth is I just needed tuned environment for my own Magento store with scalable and distributed resources. I have never worked with cloud systems before and this is my first experience. I still did not fully realize what is this and what are all the abilities of the system but I guess this is exactly what I need and for sure it is much more.
I wish Amazon provided something like step-by-step instructions for newbies like me. And it would be great to furnish the main control panel with red button "reset" to bring everything to initial settings as it was right after signup (unless all others but me are cloud-specialists), because after a few attempts to intuitively set everything up I needed to ask my friend to help me (the guy who suggested me AWS - fortunately he is quite familiar with it)
It is Awesome
The aws instance is perfectly pre-configured. The guideline and instruction is very clear and detailed. It saved me a lot of time for setting up the instance. It really help me a lot.