Heim >Backend-Entwicklung >PHP-Problem >So installieren Sie PHP MSSQL auf Ubuntu
So installieren Sie PHP MSSQL auf Ubuntu: 1. Rufen Sie das Terminal-Befehlsfenster auf. 2. Führen Sie „curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list > /etc/apt/sources“ aus .list .d/mssql-release.list“; 3. Installieren Sie „pdo_sqlsrv“ über den Installationsbefehl.
Die Betriebsumgebung dieses Tutorials: Ubuntu 16.04-System, SQLSRV-Version 5.6.1, DELL G3-Computer
Wie installiere ich PHP MSSQL auf Ubuntu?
ubuntu install php-mssql
#1
sudo su curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - #Download appropriate package for the OS version #Choose only ONE of the following, corresponding to your OS version #Ubuntu 14.04 curl https://packages.microsoft.com/config/ubuntu/14.04/prod.list > /etc/apt/sources.list.d/mssql-release.list #Ubuntu 16.04 curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list > /etc/apt/sources.list.d/mssql-release.list #Ubuntu 18.04 curl https://packages.microsoft.com/config/ubuntu/18.04/prod.list > /etc/apt/sources.list.d/mssql-release.list #Ubuntu 18.10 curl https://packages.microsoft.com/config/ubuntu/18.10/prod.list > /etc/apt/sources.list.d/mssql-release.list #Ubuntu 19.04 curl https://packages.microsoft.com/config/ubuntu/19.04/prod.list > /etc/apt/sources.list.d/mssql-release.list exit sudo apt-get update sudo ACCEPT_EULA=Y apt-get install msodbcsql17 # optional: for bcp and sqlcmd sudo ACCEPT_EULA=Y apt-get install mssql-tools echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bash_profile echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bashrc source ~/.bashrc # optional: for unixODBC development headers sudo apt-get install unixodbc-dev
#2
sudo pecl install sqlsrv pdo_sqlsrv ##如果网速慢,则下载下来 sudo pecl install sqlsrv-5.6.1.tgz sudo pecl install pdo_sqlsrv-5.6.1.tgz sudo echo "extension= pdo_sqlsrv.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"` sudo echo "extension= sqlsrv.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
Empfohlenes Lernen: „PHP-Video-Tutorial“
Das obige ist der detaillierte Inhalt vonSo installieren Sie PHP MSSQL auf Ubuntu. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!