Install Apache Php Mysql Mac Catalina

I took the steps below using a clean install of macOS Sierra, so hopefully I have covered everything that you need to do. MacOS Sierra / Xcode is bundled with Apache and PHP, but we won’t be using these as it is an old version of PHP and messing around trying to update it could potentially break something. If you’re a PHP developer and want to continue your development environment set up, then navigate to my article: How to Install PHP on macOS 10.13 High Sierra and 10.14 Mojave using. If you need to setup a MySQL Workbench, you can refer to Using MySQL Workbench on macOS Catalina (2019) If you are using macOS Catalina, check out Setting Up Your Local Server on macOS Catalina (2019) – MAMP – macOS, Apache, MySQL, PHP to setup your mac local web server.

-->

Installing Apache and PHP on macOS Catalina 10.15. The title of this page is quite 'misleading' as both Apache and PHP comes pre-bundled in macOS Catalina 10.15. We merely need to configure them. Press ⌘ + SPACE (Spotlight Search) and bring up the terminal.

The following instructions assume a clean environment and show how to install PHP 8.0, the Microsoft ODBC driver, the Apache web server, and the Microsoft Drivers for PHP for SQL Server on Ubuntu, Red Hat, Debian, Suse, Alpine, and macOS. These instructions advise installing the drivers using PECL, but you can also download the prebuilt binaries from the Microsoft Drivers for PHP for SQL Server GitHub project page and install them following the instructions in Loading the Microsoft Drivers for PHP for SQL Server. For an explanation of extension loading and why we do not add the extensions to php.ini, see the section on loading the drivers.

The following instructions install PHP 8.0 by default using pecl install, if the PHP 8.0 packages are available. You may need to run pecl channel-update pecl.php.net first. Some supported Linux distros default to PHP 7.1 or earlier, which is not supported for the latest version of the PHP drivers for SQL Server. See the notes at the beginning of each section to install PHP 7.4 or 7.3 instead.

Also included are instructions for installing the PHP FastCGI Process Manager, PHP-FPM, on Ubuntu. PHP-FPM is needed if you're using the nginx web server instead of Apache.

While these instructions contain commands to install both SQLSRV and PDO_SQLSRV drivers, the drivers can be installed and function independently. Users comfortable with customizing their configuration can adjust these instructions to be specific to SQLSRV or PDO_SQLSRV. Both drivers have the same dependencies except where noted below.

Installing on Ubuntu

Ubuntu versions 16.04, 18.04, and 20.04 are supported.

Note

To install PHP 7.4 or 7.3, replace 8.0 with 7.4 or 7.3 in the following commands.

Step 1. Install PHP (Ubuntu)

Step 2. Install prerequisites (Ubuntu)

Install the ODBC driver for Ubuntu by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux). Make sure to also install the optional unixodbc-dev package. It's used by the pecl command to install the PHP drivers.

Step 3. Install the PHP drivers for Microsoft SQL Server (Ubuntu)

If there is only one PHP version in the system, then the last step can be simplified to phpenmod sqlsrv pdo_sqlsrv.

Step 4. Install Apache and configure driver loading (Ubuntu)

Step 5. Restart Apache and test the sample script (Ubuntu)

To test your installation, see Testing your installation at the end of this document.

Installing on Ubuntu with PHP-FPM

Install Apache Php Mysql Mac Catalina Free

Ubuntu versions 16.04, 18.04, and 20.04 are supported.

Note

To install PHP 7.4 or 7.3, replace 8.0 with 7.4 or 7.3 in the following commands.

Step 1. Install PHP (Ubuntu with PHP-FPM)

Verify the status of the PHP-FPM service by running:

Step 2. Install prerequisites (Ubuntu with PHP-FPM)

Install the ODBC driver for Ubuntu by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux). Make sure to also install the optional unixodbc-dev package. It's used by the pecl command to install the PHP drivers.

Step 3. Install the PHP drivers for Microsoft SQL Server (Ubuntu with PHP-FPM)

Install Apache Php Mysql Mac Catalina

If there is only one PHP version in the system, then the last step can be simplified to phpenmod sqlsrv pdo_sqlsrv.

Verify that sqlsrv.ini and pdo_sqlsrv.ini are located in /etc/php/8.0/fpm/conf.d/:

Restart the PHP-FPM service:

Step 4. Install and configure nginx (Ubuntu with PHP-FPM)

To configure nginx, you must edit the /etc/nginx/sites-available/default file. Add index.php to the list below the section that says # Add index.php to the list if you are using PHP:

Install Apache Php Mysql Mac Catalina

Next, uncomment, and modify the section following # pass PHP scripts to FastCGI server as follows:

Step 5. Restart nginx and test the sample script (Ubuntu with PHP-FPM)

To test your installation, see Testing your installation at the end of this document.

Installing on Red Hat

Red Hat versions 7 and 8 are supported.

Step 1. Install PHP (Red Hat)

To install PHP on Red Hat 7, run the following commands:

Note

To install PHP 7.4 or 7.3, replace remi-php80 with remi-php74 or remi-php73 respectively in the following commands.

To install PHP on Red Hat 8, run the following commands:

Note

To install PHP 7.4 or 7.3, replace remi-8.0 with remi-7.4 or remi-7.3 respectively in the following commands.

Step 2. Install prerequisites (Red Hat)

Install Apache Php Mysql Mac Catalina Download

Install the ODBC driver for Red Hat 7 or 8 by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux). Make sure to also install the optional unixodbc-dev package. It's used by the pecl command to install the PHP drivers.

Step 3. Install the PHP drivers for Microsoft SQL Server (Red Hat)

You can alternatively install from the Remi repo:

Step 4. Install Apache (Red Hat)

SELinux is installed by default and runs in Enforcing mode. To allow Apache to connect to databases through SELinux, run the following command:

Step 5. Restart Apache and test the sample script (Red Hat)

To test your installation, see Testing your installation at the end of this document.

Installing on Debian

Install Apache Php Mysql Mac Catalina

Debian versions 9 and 10 are supported.

Install Apache Php Mysql Mac Catalina

Note

To install PHP 7.4 or 7.3, replace 8.0 in the following commands with 7.4 or 7.3.

Step 1. Install PHP (Debian)

Step 2. Install prerequisites (Debian)

Install the ODBC driver for Debian by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux). Make sure to also install the optional unixodbc-dev package. It's used by the pecl command to install the PHP drivers.

You may also need to generate the correct locale to get PHP output to display correctly in a browser. For example, for the en_US UTF-8 locale, run the following commands:

You may need to add /usr/sbin to your $PATH, as the locale-gen executable is located there.

Step 3. Install the PHP drivers for Microsoft SQL Server (Debian)

If there is only one PHP version in the system, then the last step can be simplified to phpenmod sqlsrv pdo_sqlsrv. As with locale-gen, phpenmod is located in /usr/sbin so you may need to add this directory to your $PATH.

Step 4. Install Apache and configure driver loading (Debian)

Step 5. Restart Apache and test the sample script (Debian)

To test your installation, see Testing your installation at the end of this document.

Installing on Suse

Suse Enterprise Linux versions 12 and 15 are supported.

Note

In the following instructions, replace <SuseVersion> with your version of Suse. If you are using Suse Enterprise Linux 15, it will be SLE_15_SP1 or SLE_15_SP2. For Suse 12, use SLE_12_SP4 (or above if applicable). Not all versions of PHP are available for all versions of Suse Linux. Refer to http://download.opensuse.org/repositories/devel:/languages:/php to see which versions of Suse have the default version of PHP available, or check http://download.opensuse.org/repositories/devel:/languages:/php:/ to see which other versions of PHP are available for which versions of Suse.

Note

Packages for PHP 7.4 or above are not available for Suse 12 and Package for PHP 8.0 is not yet available for Suse 15.To install PHP 7.3, replace the repository URL below with the following URL:https://download.opensuse.org/repositories/devel:/languages:/php:/php73/<SuseVersion>/devel:languages:php:php73.repo.

Step 1. Install PHP (Suse)

Step 2. Install prerequisites (Suse)

Install the ODBC driver for Suse by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux). Make sure to also install the optional unixodbc-dev package. It's used by the pecl command to install the PHP drivers.

Install Apache Php Mysql Mac Catalina

Step 3. Install the PHP drivers for Microsoft SQL Server (Suse)

Note

If you get an error message saying Connection to 'pecl.php.net:443' failed: Unable to find the socket transport 'ssl', edit the pecl script at /usr/bin/pecl and remove the -n switch in the last line. This switch prevents PECL from loading ini files when PHP is called, which prevents the OpenSSL extension from loading.

Step 4. Install Apache and configure driver loading (Suse)

Step 5. Restart Apache and test the sample script (Suse)

Mac

To test your installation, see Testing your installation at the end of this document.

Installing on Alpine

Alpine versions 3.11 and 3.12 are supported.

Note

The default version of PHP is 7.3. PHP 7.4 or above may be available from testing or edge repositories for Alpine. You can instead compile PHP from source.

Step 1. Install PHP (Alpine)

PHP packages for Alpine can be found in the edge/community repository. Check Enable Community Repository on their WIKI page. Add the following line to /etc/apk/repositories, replacing <mirror> with the URL of an Alpine repository mirror:

Then run:

Step 2. Install prerequisites (Alpine)

Install the ODBC driver for Alpine by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux). Make sure to also install the unixodbc-dev package (sudo apk add unixodbc-dev). It's used by the pecl command to install the PHP drivers.

Step 3. Install the PHP drivers for Microsoft SQL Server (Alpine)

Step 4. Install Apache and configure driver loading (Alpine)

Step 5. Restart Apache and test the sample script (Alpine)

To test your installation, see Testing your installation at the end of this document.

Installing on macOS

MacOS versions 10.14 (Mojave), 10.15 (Catalina), and 11.0 (Big Sur) are supported.

If you do not already have it, install brew as follows:

Note

To install PHP 7.4 or 7.3, replace php@8.0 with php@7.4 or php@7.3 respectively in the following commands.

Step 1. Install PHP (macOS)

PHP should now be in your path. Run php -v to verify that you are running the correct version of PHP. If PHP is not in your path or it is not the correct version, run the following commands:

Step 2. Install prerequisites (macOS)

Install the ODBC driver for macOS by following the instructions on the Install the Microsoft ODBC driver for SQL Server (macOS).

Install Apache Php Mysql Mac Catalina Update

In addition, you may need to install the GNU make tools:

Step 3. Install the PHP drivers for Microsoft SQL Server (macOS)

Step 4. Install Apache and configure driver loading (macOS)

To find the Apache configuration file, httpd.conf, for your Apache installation, run:

The following commands append the required configuration to httpd.conf. Be sure to substitute the path returned by the preceding command in place of /usr/local/etc/httpd/httpd.conf:

Step 5. Restart Apache and test the sample script (macOS)

To test your installation, see Testing your installation at the end of this document.

Testing Your Installation

To test this sample script, create a file called testsql.php in your system's document root. This path is /var/www/html/ on Ubuntu, Debian, and Red Hat, /srv/www/htdocs on SUSE, /var/www/localhost/htdocs on Alpine, or /usr/local/var/www on macOS. Copy the following script to it, replacing the server, database, username, and password as appropriate.

SQLSRV example

PDO_SQLSRV example

Install Apache Php Mysql Mac Catalina 2019

Point your browser to https://localhost/testsql.php (https://localhost:8080/testsql.php on macOS). You should now be able to connect to your SQL Server/Azure SQL database. If you don't see a success message showing SQL version information, you can do some basic troubleshooting by running the script from the command line:

If running from the command line is successful but nothing shows in your browser, check the Apache log files. For more help, see Support resources for places to go.

See Also