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

时间:2015-05-10 14:59:31

标签: php sql-server pdo

我有一个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 个答案:

答案 0 :(得分:0)

php.ini

中的设置有时会出现问题

请尝试更改:

mssql.secure_connection = Off

mssql.secure_connection = On