Please be aware that the content in SAP SQL Anywhere Forum will be migrated to the SAP Community in June and this forum will be retired.

I'm trying to start a service on the demo database in SA17 with the command:

sudo /opt/sqlanywhere17/bin64/dbsvc -as -t network -s automatic -w demosvc -n demo /opt/sqlanywhere17/demo.db
This is substantially the same command I used successfully with SA16, but with SA17 I get the errors:
SQL Anywhere Service Utility 17.0.0.1062
Creating SQL Anywhere service: demosvc File: /etc/init.d/SA_demosvc
update-rc.d: warning:  start runlevel arguments (2 3 5 ) do not match SA_demosvc Default-Start values (2 3 5)
update-rc.d: error: expected runlevel [0-9S] (did you forget "." ?)
usage: update-rc.d [-n] [-f] <basename> remove
       update-rc.d [-n] <basename> defaults [NN | SS KK]
       update-rc.d [-n] <basename> start|stop NN runlvl [runlvl] [...] .
       update-rc.d [-n] <basename> disable|enable [S|2|3|4|5]
        -n: not really
        -f: force

The disable|enable API is not stable and might change in the future.

The 'dbsvc' command seems to be generating an invalid init script.

I'm running Ubuntu 14.04.1 LTS.

Has anyone else seen this?

asked 07 Aug '15, 13:47

Terry%20Wilkinson's gravatar image

Terry Wilkinson
746303548
accept rate: 25%

edited 07 Aug '15, 14:46


We got the update-rc.d command line incorrect. The service script itself is not wrong, so you could run the udpate-rc.d script yourself as follows:

sudo /usr/sbin/update-rc.d SA_demosvc start 60 2 3 5 . stop 80 S 0 1 4 6 .

You should then be able to start and stop the service as normal.

I have created change request 788097 to track this issue and a fix will be included in a patch with build number at least 1235.

If you want the same behaviour as v16, you should also change your -as to -a root as the -as flag has been change to be more secure and it also matches the behaviour on Windows a little more closely. The server would be started as the daemon user, which probably has permission restrictions (which is usually a good thing).

permanent link

answered 10 Aug '15, 12:05

Phil%20Mitchell's gravatar image

Phil Mitchell
1.9k1831
accept rate: 27%

Thanks for the quick response!!! And the work-around, ah ... worked :-)

(10 Aug '15, 12:54) Terry Wilkinson
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×246
×68
×40
×18

question asked: 07 Aug '15, 13:47

question was seen: 3,125 times

last updated: 10 Aug '15, 12:54