Hi Steve,

I presume you are referring to the following documentation URL:

http://docs.openlinksw.com/virtuoso/linuxinstall.html#linautovirt

Their is nothing particularly special about these files, the content of the one for starting the default db being of the form:

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
TOPDIR="/dbs/virtuoso"
DAEMON=$TOPDIR/bin/virtuoso
NAME=virtuoso
DESC="OpenLink Virtuoso Universal Server"

test -x $DAEMON || exit 0

set -e

case "$1" in
  start)
        echo -n "Starting $DESC: $NAME"
        . $TOPDIR/virtuoso-enterprise.sh
        virtuoso-start.sh
        echo "."
        ;;
  stop)
        echo -n "Stopping $DESC: $NAME "
        . $TOPDIR/virtuoso-enterprise.sh
        virtuoso-stop.sh
        echo "."
        ;;
  *)
        N=/etc/init.d/$NAME
        # echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
        echo "Usage: $N {start|stop|restart|force-reload}" >&2
        exit 1
        ;;
esac

exit 0


Best Regards
Hugh Williams
Professional Services
OpenLink Software
Web: http://www.openlinksw.com
Support: http://support.openlinksw.com
Forums: http://boards.openlinksw.com/support



On 10 Oct 2008, at 07:50, Steve Judkins wrote:

The enterprise edition instructions contain a step for setting up automatic startup that are curiously missing from the parallel VOS instructions. I cannot seem to find these templates in the VOS install (or source) directory. Do these have anything special or are we expected to modify the skeleton file?

2.2.5. Starting Virtuoso Automatically on Reboot

Two files, named initd_startup.template and initd_startup_demo.template, are placed in the top level of the Virtuoso installation directory. On systems using SysVinit (most Linux distributions, Solaris) the appropriate one should be copied into /etc/init.d/ and symlinks created in the rcN.d/ directories,



---------------------------------------------------------------------- --- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________
Virtuoso-users mailing list
Virtuoso-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/virtuoso-users

Reply via email to