php 无法连接到 sql server 2008(使用 pdo dblib)

Posted

技术标签:

【中文标题】php 无法连接到 sql server 2008(使用 pdo dblib)【英文标题】:php can't connect to sql server 2008 (using pdo dblib) 【发布时间】:2015-07-21 02:04:09 【问题描述】:

我有一个 SQL server 2008 R2(在 Windows server 2008 64bit 上运行),我正在尝试从 php 连接

我的 PHP 服务器配置:

CentOS 6.6

PHP 5.5.24(编译 --with-mssql=/usr/local/freetds --with-pdo-dblib=/usr/local/freetds)

Apache 2.4.12

SELinux 被禁用(根据这个解决方案:PDO DBLIB accessing SQL Server 2008 and 2012)

我编写了以下 PHP 代码来连接 SQL 服务器:

try 
    require "classes/mypdo.class.php";
    $pdo = new MyPDO('dblib:dbname=myDB;host=myServer', 'myUser', 'myPassword');
    $pdo->debug = true;
 catch (PDOException $e) 
    die("Connection failed: $e->getMessage()");

连接失败并出现错误:

Connection failed: SQLSTATE[HY000] Unknown host machine name (severity 2)

我尝试了其他 DSN 语法,例如:

$pdo = new MyPDO('dblib:host=192.168.0.10', 'myUser', 'myPassword');
$pdo = new MyPDO('dblib:host=192.168.0.10:1433', 'myUser', 'myPassword');
$pdo = new MyPDO('dblib:host=myServer', 'myUser', 'myPassword');

还有许多其他变体... 当我使用 IP 地址而不是 DSN 时,错误是:

Connection failed: SQLSTATE[HY000] Unable to connect: Adaptive Server is unavailable or does not exist (severity 9)

/etc/freetds.conf

[global]
tds version = 7.1
dump file = /tmp/freetds.log
timeout = 10
connect timeout = 10
text size = 64512
client charset = UTF-8

[myServer]
host = 192.168.0.10
port = 1433
tds version = 7.1

我怀疑 PHP 忽略了 freetds.conf(无法确认)。

当我使用 tsql 时,连接正常。

tsql -S myServer -U MyUser -P MyPassword
locale is "en_US.UTF-8"
locale charset is "UTF-8"
using default charset "UTF-8"
1> 

PHP拒绝连接SQL服务器的原因是什么?

【问题讨论】:

【参考方案1】:

php.ini

中的设置有时会出现问题

请尝试更改:

mssql.secure_connection = Off

mssql.secure_connection = On

【讨论】:

以上是关于php 无法连接到 sql server 2008(使用 pdo dblib)的主要内容,如果未能解决你的问题,请参考以下文章

将 php 连接到 MS SQL Server 2008

SQL SERVER2008无法连接到服务器

无法连接到 SQL Server 2008 Express 实例

无法将 jdbc 连接到 sql server 2008 r2

Apache 不会使用 PHP 连接到 SQL Server

在IIS7中通过PHP连接到SQL SERVER 2008(使用Windows身份验证)?