码迷,mamicode.com
首页 > 数据库 > 详细

linux下配置php扩展mssql

时间:2014-08-06 06:16:51      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:blog   http   os   io   文件   数据   ar   linux   

 

前言:linux下配置php扩展mssql,使php通过mssql工具实现和远程win SQL server数据的传递。

有两种方法:

一、第一次编译php时提供mssql支持,即在编译参数上加上--with-mssql=/path

二、对于己安装的php,需把mssql当成一个模块,编译php使其支持,本文主要讲解这种方法:

1、安装配置freetds

下载源码包,并编译安装

#wget 
tp://ibiblio.org/pub/Linux/ALPHA/freetds/stable/freetds-stable.tgz
#tar -zxvf freetds-stable.tgz
#cd freetds-freetds-0.91/
#./configure --prefix=/usr/local/freetds --enable-msdblib
#make
#make install

2、重新添加编译php,使之支持mssql模块

1)进入php的源码目录(是源码包解压出来的php目录)

#cd ~/php-5.5.13/ext/mssql/

2)执行phpize生成编译配置文件(phpize是用来扩展php扩展模块的,通过phpize可以建立php的外挂模块)

#/usr/local/php/bin/phpize

3)重新编译

#./configure --with-php-config=/usr/local/php/bin/php-config --with-mssql=/usr/local/freetds/
#make
#make install

4)看到上图说明安装模块成功,并按上图所示路径在php.ini中开启模块

 bubuko.com,布布扣

3、修改freetds.conf

#vim /usr/local/freetds/etc/freetds.conf
[server2008]
host = 10.32.22.100
port = 1433
tds version = 7.0
client charset = utf8

3、验证(不需要重启php-fpm)

#php -m |  grep mssql
mssql

4、测试连接

bubuko.com,布布扣

注:由于版本原因可能会报错,需要用TDSVER=7.0指定版本。

 

 

 

本文出自 “Linux_蚂蚁” 博客,请务必保留此出处http://onlyoulinux.blog.51cto.com/7941460/1536188

linux下配置php扩展mssql,布布扣,bubuko.com

linux下配置php扩展mssql

标签:blog   http   os   io   文件   数据   ar   linux   

原文地址:http://onlyoulinux.blog.51cto.com/7941460/1536188

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!