oracle [[FATAL]] [[DBT-06103]]端口(5,500)已在Docker容器中使用

p1tboqfb  于 2023-10-16  发布在  Oracle
关注(0)|答案(1)|浏览(305)

我试图使用Oracle 19c DB容器在Jenkins作业中进行测试,但DB容器间歇性地失败,并出现此错误

[FATAL] [DBT-06103] The port (5,500) is already in use.
   ACTION: Specify a free port.

我提到了this answer,但我如何在主机名始终是动态的容器中实现这一点?

vs3odd8k

vs3odd8k1#

我通过以下解决方案解决了这个问题:
只需将IPMap添加到/etc/hosts以进行主机名解析。
打开/etc/hosts然后添加主机到ipMap

10.10.10.10 ora19c ora19c.example.com

https://logic.edchen.org/how-to-resolve-dbt-06103-the-port-5500-is-already-in-use/

相关问题