cancel
Showing results for 
Search instead for 
Did you mean: 

Multiple instances of Mobilink Server

Former Member
1,294

Hi,

how to start the multiple instances of mobilink server on a same machine with different Port?

I have tried using tcpip(port=2440) and its giving me a syntax error near (

Thanks

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Please post your full command-line (excluding passwords) so we get the full picture.

  • Russ
Former Member
0 Kudos

. /opt/sqlanywhere10/bin32/mlsrv10 -c "DSN=SQLANY" -zs Rmlsvr -fr -zu+ -f -zp -x tcpip(port=2440) -ud -w 10 -wu 5 -cm 250M -cn 30

Former Member
0 Kudos

Try using {} instead of () as in: -x tcpip{port=2440}

Former Member
0 Kudos

i am getting command not found if I try with {}

Former Member
0 Kudos

Ah, I'm looking at how our test gear works and I see I missed a subtle point. You have to put double quotes, as follows: -x "tcpip{port=2440}".

  • Russ
Former Member
0 Kudos

still the same and getting following message

-bash:ELF: command not found

Former Member
0 Kudos

OK. I googled the "ELF" error, and there is another subtle point. Your command line has ". " in front of the mlsrv10 path. This means that you are attempting to invoke an executable as a shell script. Remove the leading ". ".

  • Russ
Former Member
0 Kudos

it works !! thanks Russ