Magento Mac Download

Posted on  by 

Please see our September 2017 blog ‘How to Install Magento 2 For Your eCommerce website‘ for the most up-to-date information on this installation.

Magento Mac Download

While you are asking about a product I am not familiar with, the following sites offer DOWNLOADING: However I did notice that LINUX is mentioned, so you may need Linux to make full use of this product and as an OPEN SOURCE product, just beware.

JumpBox for Magento for Mac By JumpBox Free to try Download.com has removed the direct-download link and offers this page for informational purposes only. Explore the functionality of Store Manager for Magento - a unique tool for managing your online store effectively. With this easy-to-use application, you get an excellent opportunity to administer categories, products, manufacturers, suppliers, customers, orders, etc. Explore the functionality of Store Manager for Magento - a unique tool for managing your online store effectively. With this easy-to-use application, you get an excellent opportunity to administer categories, products, manufacturers, suppliers, customers, orders, etc. Check the comparison between those two versions. What is BitNami Magento Stack for Mac BitNami Magento Stack native Installer is an easy-to-install distribution of the Magento application. It includes pre-configured, ready-to-run versions of Apache, MySQL, PHP and phpMyAdmin so users can get a Magento installation up and running in minutes after answering a few questions.

In this blog, I will teach you how to install Magento 2 on a Mac for local development. In this instance, we will not being using Vagrant, or any virtual layer. It’s a direct installation.

System Requirements

1. For the web server, we will use MAMP. If you’re not familiar, MAMP is an excellent tool for setting up a local server environment. We use the free version.

2. PHP will need to be version 5.6.x and up (MAMP will include those versions).

3. MySQL 5.6. The default MAMP MySQL (version 5.5) will not work for Magento 2, which requires MySQL version 5.6. We will need to install an additional MySQL database server to make this work properly. You can get it from here. Also make sure you use a different port from MAMP MySQL. I am aware that you can probably replace or update MAMP MySQL to use version 5.6 but i did it this way because it faster. If you want to find out more about integrating mysql into MAMP, you can check out this MAMP blog. But to me it too much additional work to do.

Installing MySQL 5.6.28 on Mac

1. Download the DMG file from this link: http://dev.mysql.com/downloads/mysql/5.6.html#downloads

2. Mount your DMG (I was able to do this by double-clicking the download) and a window should pop up.

3. Run the .pkg file and the installation window will pop up.4. Click Continue > Continue >Agree > Install > Close

5. Now you should have the correct version of the MySQL database running on port 3306. You may need to restart it. You can connect to it with many database clients or using the command line.

Other Software

You will also need

  • GIT to get Magento 2 files from the Github repository.
  • Composer. download and install Composer to install Magento 2.

After you install composer and you get PHP error when running composer that you need a 5.6 at least, it might be because the php you have on your Laptop is what is running from command line(mac has build-in php), and not the php in mamp.

Mac download folder

How to fix it:

type:

to verify.

if you see /usr/bin/php you know it is using the Mac version.

Find the path to your MAMP php by going to:

now look at the versions and choose the path to one 5.6 or greater.

and add this lines:

PHP_VERSION=`ls /Applications/MAMP/bin/php/ | sort -n | tail -1`export PATH=/Applications/MAMP/bin/php/${PHP_VERSION}/bin:$PATH

Magento 2 Installation

1. First you will need to configure Apache to handle the Magento 2 path. In my case, I used http://local.magento2:8888/ This can be set up in your /Applications/MAMP/htdocs

Magento Mac Download Free

how to set it? I’m preaty sure there is many articles on that. Here is piece of virtual host configuration

# Magento_2
<VirtualHost *:8888>
ServerAdmin ********@*****.***
DocumentRoot “/Applications/MAMP/htdocs/magento2”
ServerName local.magento2
ServerAlias local.magento2
ErrorLog “logs/local.magento2-error”
CustomLog “logs/local.magento2-access” common
</VirtualHost>

Joomla Mac Download

2. Get Repository. Run the following command to download the Magento 2 dev files:

3. Create the database. Let’s call it magento2

4. Start terminal and cd to magento 2 root folder. From there run:

Again, you can download composer here.

3. After composer is done, cd to [magento2_instalation]/bin folder and from there, run the following:

You will have to fill some parameters with your related data.

Here is full list of parameters available for install:

setup:install [–backend-frontname=”…”][–key=”…”][–session-save=”…”][–definition-format=”…”][–db-host=”…”][–db-name=”…”]

[–db-user=”…”][–db-engine=”…”][–db-password=”…”][–db-prefix=”…”][–db-model=”…”]
[–db-init-statements=”…”][-s|–skip-db-validation][–http-cache-hosts=”…”][–base-url=”…”][–language=”…”]
[–timezone=”…”][–currency=”…”] [–use-rewrites=”…”] [–use-secure=”…”] [–base-url-secure=”…”]
[–use-secure-admin=”…”] [–admin-use-security-key=”…”] [–admin-user=”…”] [–admin-password=”…”]
[–admin-email=”…”] [–admin-firstname=”…”] [–admin-lastname=”…”] [–cleanup-database]
[–sales-order-increment-prefix=”…”] [–use-sample-data] [–magento-init-params=”…”]
Magneto software

Note that base-url is not a required option.

And after you done. Go to http://local.magento2:8888/ and you should see site like below.

Configuration

Now that you’ve finished installing the Magento application, you need to configure it. Post-install configuration settings will include:

  • Setting up cron
  • Configuring the security settings
  • Enabling the Apache server rewrites
  • Configuring the Server settings
  • Settings for Magento Enterprise Edition (EE) only

For more information on Magento 2 installation and configuraion, visit the Magento 2 Documentation.

Coments are closed