The article logs my process of using Nginx1.19 + php7.3 + MySQL8 to build the test environment of Magento on my MacBook(macOS Big Sur 11.2.1), I hope it is helpful for you.
Before starting the installation, you need homebrew installed on the computer.
Nginx Part:
Firstly, install Nginx and start the service
% brew install nginx
% brew services start nginx
MySQL Part:
Secondly, install MySQL8, start the service and create the database
% brew install mysql
% brew services start mysql
Edit my.cnf to run MySQL8 with native password authentication
% vi /usr/local/etc/my.cnf
#add the below line in the section [mysqld]
default-authentication-plugin=mysql_native_password
# If my.cnf file doesn't exist in the directory '/usr/local/etc'
# use the following commands to find out where it is
# ---------------------------------------------
# % sudo /usr/libexec/locate.updatedb
# #wait a few minutes for it to finish
# locate my.cnf
# ---------------------------------------------
Save then restart MySQL service
% brew services restart mysql
Change MySQL password
% mysql -uroot
% mysql> use mysql;
% mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';
% mysql> flush privileges;
% mysql> exit;
Create new Magento database:
% mysql -uroot -p123456
% mysql> create database magento;
% mysql> exit;
Mysql has been installed successfully and configured properly. Now let us install PHP.
PHP Part:
The default PHP version is PHP8 by brew however Magento2 doesn’t support it so we need to install a downgraded PHP7.3 version and start the service for php-fpm mode which will be occupying port 9000.
% brew install php@7.3
% brew link --force php@7.3
% brew services start php@7.3
After installed, open a new terminal to confirm the latest php7.3 has been installed:

There are some configures you need to set in php.ini
% vi /usr/local/etc/php/7.3/php.ini
then update following settings:
memory_limit=2G
date.timezone=Pacific/Auckland
zlib.output_compression = On
#For test purpose only
max_execution_time = 86400
upload_max_filesize = 2G
post_max_size = 2G
max_input_vars = 86400
max_input_time = 86400
remember to restart PHP services after updated php.ini
% brew services restart php@7.3
Install composer as the PHP package management tool
% brew install composer
Magento Part:
Install elasticsearch and start the service which relied on Magento.
% brew install elasticsearch
% brew services start elasticsearch
Download Magneto source code to a new folder, I name it as “magento-community” and you can use any name.
composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition magento-community
You will be asked to provide the name and password for downloading from repo.magento.com, access https://marketplace.magento.com/ , register a new user or login, then, click “My Profile” on your username at the right top of the page.

Click “Access Keys” to go to the Access Keys page, then create a new access key, and use Public Key as username and Private Key as password, then you should be able to download Magento Community Version, my downloaded version is Magento 2.4.2.

After downloading successfully, go to the Magento folder,

Install Magento:
% php bin/magento setup:install --base-url=http://127.0.0.1:8001/ --db-host=127.0.0.1 --db-name=magento --db-user=root --db-password=123456 --admin-firstname=admin --admin-lastname=admin --admin-email=ukalpa@gmail.com --admin-user=admin --admin-password=admin123456 --language=en_AU --currency=NZD --timezone=Pacific/Auckland --use-rewrites=1
Starting Magento installation:
File permissions check...
[Progress: 1 / 1314]
Required extensions check...
[Progress: 2 / 1314]
Enabling Maintenance Mode...
[Progress: 3 / 1314]
Installing deployment configuration...
......
[Progress: 1311 / 1314]
Disabling Maintenance Mode:
[Progress: 1312 / 1314]
Post installation file permissions check...
For security, remove write permissions from these directories: '/Users/ukalpa/Projects/php/magento/magento-community/app/etc'
[Progress: 1313 / 1314]
Write installation date...
[Progress: 1314 / 1314]
[SUCCESS]: Magento installation complete.
[SUCCESS]: Magento Admin URI: /admin_15owhz
Nothing to import.
ukalpa@Shuis-MacBook-Pro magento-community %
Magento has been installed successfully, remember to turn off two-step authentication or you will get an email notification to confirm login.
php bin/magento module:disable Magento_TwoFactorAuth
now let us configure Nginx.
Configure Nginx to support PHP
% vi /usr/local/etc/nginx/servers/magento-community
--------------------------------------------------
# add the following content in the file
# remeber to change the folder path to your path
upstream fastcgi_backend {
server 127.0.0.1:9000;
}
server {
listen 8001;
server_name 127.0.0.1;
set $MAGE_ROOT /Users/ukalpa/Projects/php/magento/magento-community;
set $MAGE_DEBUG_SHOW_ARGS 0;
include /Users/ukalpa/Projects/php/magento/magento-community/nginx.conf.sample;
}
#save and exit
-------------------------------------------------
% brew services restart nginx
Now Magento has been installed successfully on Macbook, you can access it at http://127.0.0.1:8001


2 replies on “Build Magento 2.4.2 Community test environment using nginx1.19+php7.3+mysql8 on MacOS”
Getting an error on both safari and firefox stating.
Firefox can’t establish a connection to the server at 127.0.0.1:8001.
Hi Lewin,
What error did you get?