Subject | Re: Remote connection to Firebird DB in a MS WorkGroup |
---|---|
Author | Fabián Eduardo Porta |
Post date | 2005-02-27T21:13:13Z |
Dear Helen,
Thanks a lot! You've been really clear! I'll try with this tomorrow.
I config Port # 3050 as an exception on my (SP2) Firewall. I will
also try deactivating it.
BR
--- In firebird-support@yahoogroups.com, Helen Borrie <helebor@t...>
wrote:
Thanks a lot! You've been really clear! I'll try with this tomorrow.
I config Port # 3050 as an exception on my (SP2) Firewall. I will
also try deactivating it.
BR
--- In firebird-support@yahoogroups.com, Helen Borrie <helebor@t...>
wrote:
> At 01:17 PM 24/02/2005 +0000, you wrote:not
>
>
>
> >Hello everyone!
> >
> >I have 4 PCs (with WinXP Pro) connected through a Workgroup. I'm
> >able to make a connection from one PC to a Firebird databaselocated
> >in another PC in the workgroup. I've been searching for connectionclients to
> >strings examples, but none was good for my case.
>
> No, you can't use workgroup filesharing for connecting firebird
> the server. On Windows, you have two choices of protocol: NamedPipes and
> TCP/IP. TCP/IP is preferred because it is less noisy.machine. It
>
> For named pipes, you need to know the hostname of the server
> must NOT be a share. Let's say its name is "DBServer". (Get thisname from
> the property sheet of the "My Computer" applet.)the
>
> You need a client application on the client machine, and a copy of
> client library, fbclient.dll. (Many client tools needfbclient.dll renamed
> as gds32.dll and placed in c:\Windows\System32.)must NOT be
>
> The connection string for named pipes would be:
>
> \\DBServer\c:\Program Files\Firebird\Firebird_1_5\employee.fdb
>
> For TCP/IP, it would be
> DBServer:c:\Program Files\Firebird\Firebird_1_5\employee.fdb
>
> This part (c:\Program Files\Firebird\Firebird_1_5\employee.fdb)
> a share. You can set up an alias for this part in aliases.conf,e.g.
>and add
> emp = c:\Program Files\Firebird\Firebird_1_5\employee.fdb
>
> Then your connection string can be
>
> \\DBServer\emp
>
> or
>
> DBServer:emp
>
> For the TCP/IP clients, open c:\Windows\system32\drivers\etc\hosts
> the entrythe local
>
> nnn.nnn.nnn.nnn DBServer
>
> where nnn.nnn.nnn.nnn is the IP address of the server's node in
> network.
>
> ./hb