Service???

lord_icon

Member
How do I start a service? then connect to THAT service?
I am in the process of realizing across a network. How do I start a service so I can connect to a database not situated on my machine??
TIA
 

doreynie

Member
What do you mean with 'a service'? Do you mean a windows-service? Or do you want to startup a database, running networked/multiple users, so you can connect to it from over the network?
 

lord_icon

Member
I wish to startup a database, running networked/multiple users, so yOr do you want to startup a database, running networked/multiple users, so you can connect to it from over the network?I ou can connect to it from over the network?

I have my db sat on a machine that I wish to access from a different machine.
 
Hi.

You have to start your server in multiuser mode with the -S parameter

example:

proserve tempo -S 60515

(start database named tempo with a service port number 60515)


And your client can access the db, like this.

mpro tempo -H host -S 60515

host = name or ip address of the host where your DB recide
 
Top