宝塔面板linux安装mssql扩展

一 先安装php5.6和nginx,php5.6要选 编译安装

二 进入 服务器 按编号 依次运行

9 wget ftp://ftp.freetds.org/pub/freetds/stable/freetds-patched.tar.gz
10 tar -zxvf freetds-patched.tar.gz
11 ls
12 cd freetds-1.1.6/
13 ./configure --prefix=/usr/local/freetds --with-tdsver=7.3 --enable-msdbli b
14 make && make install
15 cd /usr/local/freetds/
16 ls
17 cd /www/server/php/56/src/ext/mssql
18 /www/server/php/56/bin/phpize
19 ./configure --with-php-config=/www/server/php/56/bin/php-config --with-ms sql=/usr/local/freetds/
20 make && make install
21 cd /www/server/php/56/src/ext/pdo_dblib/
22 /www/server/php/56/bin/phpize
23 ./configure --with-php-config=/www/server/php/56/bin/php-config --with-pd o-dblib=/usr/local/freetds/
24 make && make install

原文链接 :http://www.ix1.shop/archives/84747

你可能感兴趣的:(php)