Firebird: Unable to complete network request to host

后端 未结 3 925
太阳男子
太阳男子 2020-12-04 02:03

I\'m trying to connect to a remote Firebird database \"test\" (alias already added). It is not an embedded server, and is installed on VM with IP 192.168.1.147.

Here

相关标签:
3条回答
  • 2020-12-04 02:15

    Make sure you have excluded tcp port 3050 in VMs' firewall.

    0 讨论(0)
  • 2020-12-04 02:23

    Make sure that

    1. Firebird is running
    2. Firebird is listening on port 3050 on the specified IP (or on 0.0.0.0)
    3. Your firewall allows access to port 3050
    0 讨论(0)
  • 2020-12-04 02:33

    For Linux, the Firebird port is closed by default. You need to modify RemoteBindAddress in /etc/firebird/2.5/firebird.conf from

    RemoteBindAddress = localhost
    

    to

    RemoteBindAddress =
    

    and restart service.

    0 讨论(0)
提交回复
热议问题