cancel
Showing results for 
Search instead for 
Did you mean: 

Stopping database server

huber1
Participant
3,438

Hi

In bash (Terminal on OS X), I enter:
dbstop -c "Server=walker;uid=user;pwd=password;"

I get:
SQL Anywhere Stop Server Utility Version 17.0.4.2066
Unable to stop database server -- Database server not found.

The database server with name walker is running (verified in SQL Central), see attached screenshot.
What am I missing?

Regards, Robert


Stopping database server

Accepted Solutions (1)

Accepted Solutions (1)

MarkCulp
Participant

Just because the server is running (and I presume you implied it is running on the same computer), does not mean that the connection string that you gave ( "Server=walker;uid=user;pwd=password;" ) will be enough information to connect to it. For example, this connection string would require that the client can connect to the server through shared memory (aka SHMEM) but if the server had been configured using a different tmp directory (e.g. using SATMP env var) than what the client was configured with then the client would not be able to connect.

I suggest that you check the configuration of the server and client and/or change the connection string to connect via TCPIP (i.e. add LINKS=TCPIP) and then try again.

More on trouble shooting connections can be found in the documentation.

HTH

huber1
Participant
0 Kudos

Using the Links=TCPIP finds the server and therefor works 🙂 Thanks.

Answers (0)