The following instructions assume a clean environment and show how to install PHP 8.4, the Microsoft ODBC driver, the Apache web server, and the Microsoft Drivers for PHP for SQL Server on Ubuntu, RedHat, 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.4 by default using pecl install, if the PHP 8.4 packages are available. You may need to run pecl channel-update pecl.php.net first. Note that some supported Linux distros may default to older PHP versions -- please see the notes at the beginning of each section to install PHP 8.3 or 8.5 instead.
Also included are instructions for installing the PHP FastCGI Process Manager, PHP-FPM, on Ubuntu. This is needed if you are 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 the drivers on Ubuntu
- Installing the drivers with PHP-FPM on Ubuntu
- Installing the drivers on Red Hat
- Installing the drivers on Debian
- Installing the drivers on Suse
- Installing the drivers on Alpine
- Installing the drivers on macOS
Note
To install PHP 8.3 or 8.5, replace 8.4 with 8.3 or 8.5 in the following commands.
sudo su
add-apt-repository ppa:ondrej/php -y
apt-get update
apt-get install php8.4 php8.4-dev php8.4-xml -y --allow-unauthenticatedInstall the ODBC driver for Ubuntu by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux).
sudo pecl install sqlsrv
sudo pecl install pdo_sqlsrv
sudo su
printf "; priority=20\nextension=sqlsrv.so\n" > /etc/php/8.4/mods-available/sqlsrv.ini
printf "; priority=30\nextension=pdo_sqlsrv.so\n" > /etc/php/8.4/mods-available/pdo_sqlsrv.ini
exit
sudo phpenmod -v 8.4 sqlsrv pdo_sqlsrvIf there is only one PHP version in the system, then the last step can be simplified to phpenmod sqlsrv pdo_sqlsrv.
sudo su
apt-get install libapache2-mod-php8.4 apache2
a2dismod mpm_event
a2enmod mpm_prefork
a2enmod php8.4
exitsudo service apache2 restartTo test your installation, see Testing your installation at the end of this document.
Note
To install PHP 8.3 or 8.5, replace 8.4 with 8.3 or 8.5 in the following commands.
sudo su
add-apt-repository ppa:ondrej/php -y
apt-get update
apt-get install php8.4 php8.4-dev php8.4-fpm php8.4-xml -y --allow-unauthenticatedVerify the status of the PHP-FPM service by running
systemctl status php8.4-fpmInstall the ODBC driver for Ubuntu by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux).
sudo pecl config-set php_ini /etc/php/8.4/fpm/php.ini
sudo pecl install sqlsrv
sudo pecl install pdo_sqlsrv
sudo su
printf "; priority=20\nextension=sqlsrv.so\n" > /etc/php/8.4/mods-available/sqlsrv.ini
printf "; priority=30\nextension=pdo_sqlsrv.so\n" > /etc/php/8.4/mods-available/pdo_sqlsrv.ini
exit
sudo phpenmod -v 8.4 sqlsrv pdo_sqlsrvIf 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.4/fpm/conf.d/:
ls /etc/php/8.4/fpm/conf.d/*sqlsrv.iniRestart the PHP-FPM service:
sudo systemctl restart php8.4-fpmsudo apt-get update
sudo apt-get install nginx
sudo systemctl status nginxTo 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:
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html index.php;
Next, uncomment and modify the section following # pass PHP scripts to FastCGI server as follows:
# pass PHP scripts to FastCGI server
#
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php8.4-fpm.sock;
}
sudo systemctl restart nginx.serviceTo test your installation, see Testing your installation at the end of this document.
To install PHP on Red Hat 8, run the following:
Note
To install PHP 8.3 or 8.5, replace remi-8.4 with remi-8.3 or remi-8.5 respectively in the following commands.
sudo su
dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
dnf install yum-utils
dnf module reset php
dnf module install php:remi-8.4
subscription-manager repos --enable codeready-builder-for-rhel-8-x86_64-rpms
dnf update
# Note: The php-pdo package is required only for the PDO_SQLSRV driver
dnf install php-pdo php-pear php-develTo install PHP on Red Hat 9, run the following:
Note
To install PHP 8.3 or 8.5, replace remi-8.4 with remi-8.3 or remi-8.5 respectively in the following commands.
sudo su
dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
dnf install https://rpms.remirepo.net/enterprise/remi-release-9.rpm
dnf install yum-utils
dnf module reset php
dnf module install php:remi-8.4
dnf update
# Note: The php-pdo package is required only for the PDO_SQLSRV driver
dnf install php-pdo php-pear php-develInstall the ODBC driver for Red Hat 8 or 9 by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux).
sudo pecl install sqlsrv
sudo pecl install pdo_sqlsrv
sudo su
echo extension=pdo_sqlsrv.so >> `php --ini | grep "Scan for additional .ini files" | sed -e "s|.*:\s*||"`/30-pdo_sqlsrv.ini
echo extension=sqlsrv.so >> `php --ini | grep "Scan for additional .ini files" | sed -e "s|.*:\s*||"`/20-sqlsrv.ini
exitYou can alternatively install from the Remi repo:
sudo yum install php-sqlsrvsudo yum install httpdSELinux is installed by default and runs in Enforcing mode. To allow Apache to connect to databases through SELinux, run the following command:
sudo setsebool -P httpd_can_network_connect_db 1sudo apachectl restartTo test your installation, see Testing your installation at the end of this document.
Note
To install PHP 8.3 or 8.5, replace 8.4 in the following commands with 8.3 or 8.5.
sudo su
apt-get install curl apt-transport-https
wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list
apt-get update
apt-get install -y php8.4 php8.4-dev php8.4-xml php8.4-intlInstall the ODBC driver for Debian by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux).
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:
sudo su
sed -i 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/g' /etc/locale.gen
locale-genYou may need to add /usr/sbin to your $PATH, as the locale-gen executable is located there.
sudo pecl install sqlsrv
sudo pecl install pdo_sqlsrv
sudo su
printf "; priority=20\nextension=sqlsrv.so\n" > /etc/php/8.4/mods-available/sqlsrv.ini
printf "; priority=30\nextension=pdo_sqlsrv.so\n" > /etc/php/8.4/mods-available/pdo_sqlsrv.ini
exit
sudo phpenmod -v 8.4 sqlsrv pdo_sqlsrvIf 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.
sudo su
apt-get install libapache2-mod-php8.4 apache2
a2dismod mpm_event
a2enmod mpm_prefork
a2enmod php8.4sudo service apache2 restartTo test your installation, see Testing your installation at the end of this document.
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_SP3 or SLE_15_SP4 (or above). For Suse 12, use SLE_12_SP5 (or above). Not all versions of PHP are available for all versions of Suse Linux - please refer to http://download.opensuse.org/repositories/devel:/languages:/php to see which versions of Suse have the default version 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 8.3 or above may not be available for all versions of Suse. Please check the repositories for the latest available PHP versions.
sudo su
zypper -n ar -f https://download.opensuse.org/repositories/devel:languages:php/<SuseVersion>/devel:languages:php.repo
zypper --gpg-auto-import-keys refresh
zypper -n install php8 php8-pdo php8-devel php8-opensslInstall the ODBC driver for Suse by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux).
sudo pecl install sqlsrv
sudo pecl install pdo_sqlsrv
sudo su
echo extension=pdo_sqlsrv.so >> `php --ini | grep "Scan for additional .ini files" | sed -e "s|.*:\s*||"`/pdo_sqlsrv.ini
echo extension=sqlsrv.so >> `php --ini | grep "Scan for additional .ini files" | sed -e "s|.*:\s*||"`/sqlsrv.ini
exitsudo su
zypper install apache2 apache2-mod_php8
a2enmod php8
echo "extension=sqlsrv.so" >> /etc/php8/apache2/php.ini
echo "extension=pdo_sqlsrv.so" >> /etc/php8/apache2/php.ini
exitsudo systemctl restart apache2To test your installation, see Testing your installation at the end of this document.
Note
PHP 8.4 or above may be available from testing or edge repositories for Alpine. You can instead compile PHP from source.
PHP packages for Alpine can be found in the edge/community repository. Please 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:
http://<mirror>/alpine/edge/communityThen run:
sudo su
apk update
# Note: The php84-pdo package is required only for the PDO_SQLSRV driver
apk add php84 php84-dev php84-pear php84-pdo php84-openssl autoconf make g++
# The following symbolic links are optional but useful
ln -s /usr/bin/php84 /usr/bin/php
ln -s /usr/bin/phpize84 /usr/bin/phpize
ln -s /usr/bin/pecl84 /usr/bin/pecl
ln -s /usr/bin/php-config84 /usr/bin/php-configInstall the ODBC driver for Alpine by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux).
sudo pecl install sqlsrv
sudo pecl install pdo_sqlsrv
sudo su
echo extension=pdo_sqlsrv.so >> `php --ini | grep "Scan for additional .ini files" | sed -e "s|.*:\s*||"`/10_pdo_sqlsrv.ini
echo extension=sqlsrv.so >> `php --ini | grep "Scan for additional .ini files" | sed -e "s|.*:\s*||"`/20_sqlsrv.inisudo apk add php84-apache2 apache2sudo rc-service apache2 restartTo test your installation, see Testing your installation at the end of this document.
If you do not already have it, install Homebrew as follows:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"Note
If using Apple Silicon (M1/M2/M3) hardware, please install Homebrew and PHP directly without using the emulator Rosetta 2.
Note
To install PHP 8.3 or 8.5, replace php@8.4 with php@8.3 or php@8.5 respectively in the following commands.
brew tap
brew tap homebrew/core
brew install php@8.4PHP 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:
brew link --force --overwrite php@8.4If using Apple Silicon, you might need to set the path:
export PATH="/opt/homebrew/bin:$PATH"Install the ODBC driver for macOS by following the instructions on the Install the Microsoft ODBC driver for SQL Server (macOS).
Note
If using Apple Silicon (M1/M2/M3) hardware, please install the Microsoft ODBC driver directly without using the emulator Rosetta 2.
In addition, you may need to install the GNU make tools:
brew install autoconf automake libtoolsudo pecl install sqlsrv
sudo pecl install pdo_sqlsrvIf using Apple Silicon (M1/M2/M3), do the following instead:
sudo CXXFLAGS="-I/opt/homebrew/opt/unixodbc/include/" LDFLAGS="-L/opt/homebrew/lib/" pecl install sqlsrv
sudo CXXFLAGS="-I/opt/homebrew/opt/unixodbc/include/" LDFLAGS="-L/opt/homebrew/lib/" pecl install pdo_sqlsrvNote
macOS comes with Apache 2.4 pre-installed, but Apple has removed some required scripts. The solution is to install Apache 2.4 via Homebrew and then configure it, but this is out of scope for this installation guide, so please check Apache or Homebrew for detailed instructions.
brew install apache2To find the Apache configuration file, httpd.conf, for your Apache installation, run
/usr/local/bin/apachectl -V | grep SERVER_CONFIG_FILEThe 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:
echo "LoadModule php_module /opt/homebrew/opt/php@8.4/lib/httpd/modules/libphp.so" >> /usr/local/etc/httpd/httpd.conf
(echo "<FilesMatch .php$>"; echo "SetHandler application/x-httpd-php"; echo "</FilesMatch>";) >> /usr/local/etc/httpd/httpd.confsudo apachectl restartTo test your installation, see Testing your installation at the end of this document.
To test this sample script, create a file called testsql.php in your system's document root. This is /var/www/html/ on Ubuntu, Debian, and Redhat, /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.
<?php
$serverName = "yourServername";
$connectionOptions = array(
"database" => "yourDatabase",
"uid" => "yourUsername",
"pwd" => "yourPassword"
);
function exception_handler($exception) {
echo "<h1>Failure</h1>";
echo "Uncaught exception: " , $exception->getMessage();
echo "<h1>PHP Info for troubleshooting</h1>";
phpinfo();
}
set_exception_handler('exception_handler');
// Establishes the connection
$conn = sqlsrv_connect($serverName, $connectionOptions);
if ($conn === false) {
die(formatErrors(sqlsrv_errors()));
}
// Select Query
$tsql = "SELECT @@Version AS SQL_VERSION";
// Executes the query
$stmt = sqlsrv_query($conn, $tsql);
// Error handling
if ($stmt === false) {
die(formatErrors(sqlsrv_errors()));
}
?>
<h1> Success Results : </h1>
<?php
while ($row = sqlsrv_fetch_array($stmt, SQLSRV_FETCH_ASSOC)) {
echo $row['SQL_VERSION'] . PHP_EOL;
}
sqlsrv_free_stmt($stmt);
sqlsrv_close($conn);
function formatErrors($errors)
{
// Display errors
echo "<h1>SQL Error:</h1>";
echo "Error information: <br/>";
foreach ($errors as $error) {
echo "SQLSTATE: ". $error['SQLSTATE'] . "<br/>";
echo "Code: ". $error['code'] . "<br/>";
echo "Message: ". $error['message'] . "<br/>";
}
}
?><?php
try {
$serverName = "yourServername";
$databaseName = "yourDatabase";
$uid = "yourUsername";
$pwd = "yourPassword";
$conn = new PDO("sqlsrv:server = $serverName; Database = $databaseName;", $uid, $pwd);
// Select Query
$tsql = "SELECT @@Version AS SQL_VERSION";
// Executes the query
$stmt = $conn->query($tsql);
} catch (PDOException $exception1) {
echo "<h1>Caught PDO exception:</h1>";
echo $exception1->getMessage() . PHP_EOL;
echo "<h1>PHP Info for troubleshooting</h1>";
phpinfo();
}
?>
<h1> Success Results : </h1>
<?php
try {
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
echo $row['SQL_VERSION'] . PHP_EOL;
}
} catch (PDOException $exception2) {
// Display errors
echo "<h1>Caught PDO exception:</h1>";
echo $exception2->getMessage() . PHP_EOL;
}
unset($stmt);
unset($conn);
?>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:
php testsql.phpIf running from the command line is successful but nothing shows in your browser, check the Apache log files. For additional help, see Support resources for places to go.