我有一个 web 应用程序,当数据库重新启动并尝试使用旧连接时会出现段错误。在下运行它gdb --args apache -X
会导致以下输出:
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread -1212868928 (LWP 16098)]
0xb7471c20 in mysql_send_query () from /usr/lib/libmysqlclient.so.15
我检查了驱动程序和数据库是否都是最新的(DBD::mysql 4.0008,MySQL 5.0.32-Debian_7etch6-log)。
恼人的是,我无法用一个简单的脚本来重现这个:
use DBI;
use Test::More tests => 2;
my $dbh = DBI->connect( "dbi:mysql:test", 'root' );
sub test_db {
my ($number) = $dbh->selectrow_array("select 1 ");
return $number;
}
is test_db, 1, "connected to db";
warn "restart db now";
getc;
is test_db, 1, "connected to db";
这给出了以下内容:
ok 1 - connected to db
restart db now at dbd-mysql-test.pl line 23.
DBD::mysql::db selectrow_array failed: MySQL server has gone away at dbd-mysql-test.pl line 17.
not ok 2 - connected to db
# Failed test 'connected to db'
# at dbd-mysql-test.pl line 26.
# got: undef
# expected: '1'
这行为正确,告诉我请求失败的原因。
让我难过的是它是段错误,它不应该这样做。由于它似乎只在整个应用程序运行(使用DBIx::Class)时发生,因此很难将其简化为测试用例。
我应该从哪里开始调试呢?有没有其他人看过这个?
更新:进一步的刺激表明它在 mod_perl 之下是一个红鲱鱼。将其简化为一个简单的测试脚本后,我现在已将其发布到DBI 邮件列表。感谢您的回答。