Search found 6 matches

by big_rid
Tue 30 Apr 2019 11:53
Forum: InterBase Data Access Components
Topic: Two firebird servers, one works other not.
Replies: 11
Views: 17514

Re: Two firebird servers, one works other not.

I did not understand the purpose of the ForceUsingDefaultPort parameter in a connection string 192.168.61.250/3050:/bd/bancofb2.fdb
by big_rid
Tue 30 Apr 2019 11:42
Forum: InterBase Data Access Components
Topic: Two firebird servers, one works other not.
Replies: 11
Views: 17514

Re: Two firebird servers, one works other not.

ViktorV wrote: Tue 30 Apr 2019 06:53 To solve the issue, please try to adding the IBCClasses module to uses clause and set the global variable ForceUsingDefaultPort to True. For example:

Code: Select all

initialization
  ForceUsingDefaultPort := True;	
Your suggestion solved.
I changed the port to 3052 and the ForceUsingDefaultPort: = True parameter; it was not necessary.
by big_rid
Tue 30 Apr 2019 11:14
Forum: InterBase Data Access Components
Topic: Two firebird servers, one works other not.
Replies: 11
Views: 17514

Re: Two firebird servers, one works other not.

Tsagoth wrote: Tue 30 Apr 2019 01:35 Actively refused points to a port error. Either firewall is blocking or port 3050 is not actually the listener port.
This works: isql -user sysdba -pas masterkey 192.168.1.250/3050:/bd/bancofb2.fdb.

Other tools, in addition to isql, connect at address 192.168.1.250/3050:/bd/bancofb2.fdb. (IBObjects, IBExpert)

The firewall is not blocking port 3050.
Firebird is listening on port 3050.
by big_rid
Mon 29 Apr 2019 17:18
Forum: InterBase Data Access Components
Topic: Two firebird servers, one works other not.
Replies: 11
Views: 17514

Re: Two firebird servers, one works other not.

Message: Unable to complete network request to host "192.168.1.250".
Failed to establish a connection.
No connection could be made because the target machine actively refused it. .
by big_rid
Mon 29 Apr 2019 13:51
Forum: InterBase Data Access Components
Topic: Two firebird servers, one works other not.
Replies: 11
Views: 17514

Two firebird servers, one works other not.

Good Morning.

I have two servers. A firebird 2.1 and another firebird 3.0.
I have a client.
When I configure my ibcconection to access the firebird 3.0 server it works but when I configure my ibconnection to access firebird 2.1, it does not work.

Configuration working by accessing firebird 3.0 server:
ibcconection.Server: 192.168.1.251
ibcconection.Port: 3050
ibcconection.Database: bancofb3.fdb
ibcconection.user: sysdba
ibcconection.password: masterkey
ibcconnectiion.clientlibrary: c: \ firebird30 \ fbclient.dll


Configuration not working by accessing firebird 2.1 server:
ibcconection.Server: 192.168.1.250
ibcconection.Port: 3050
ibcconection.Database: bancofb2.fdb
ibcconection.user: sysdba
ibcconection.password: masterkey
ibcconnectiion.clientlibrary: c: \ firebird21 \ fbclient.dll

Where am I going wrong?

Thank you.