gpt4 book ai didi

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

转载 作者:搜寻专家 更新时间:2023-10-31 22:00:20 32 4
gpt4 key购买 nike

我有一个 SQL Server 2008 R2(在 Windows Server 2008 64 位上运行),我正在尝试从 PHP 连接

我的 PHP 服务器配置:

中央操作系统 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 Server 的原因是什么?

最佳答案

php.ini

中的设置有时会出现问题

请尝试更改:

mssql.secure_connection = Off

mssql.secure_connection = On

关于php 无法连接到 sql server 2008(使用 pdo dblib),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30152910/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com