数据库连接超时模拟

发布于 2024-11-28 08:44:56 字数 61 浏览 0 评论 0原文

有没有办法模拟数据库连接超时?

我在生产系统上遇到数据库连接超时的问题,需要模拟类似的情况。

Is there an way to simulate a db connection timeout?

I'm encountering problems with a timeouted db connection on a productive system and need to simulate a similar situation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

橘香 2024-12-05 08:44:56

模拟这种情况的一种方法是直接在数据库中终止连接:

Oracle:

select * from v$session
where machine like '%machinename%'
order by sid desc

-- SID, SERIAL
alter system kill session '1080,16345'

One way that this could be simulated is by killing the connection directly in the database:

Oracle:

select * from v$session
where machine like '%machinename%'
order by sid desc

-- SID, SERIAL
alter system kill session '1080,16345'
野の 2024-12-05 08:44:56

尝试连接到不存在的主机或端口,您将收到连接超时。

Try to connect to a non-existing host or port, and you will get the connection timeout.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文