Skip to contents

Kill ends the process started by vos_start()

Usage

vos_kill(p = NA)

Arguments

p

a process object, returned by vos_process() or vos_start(). (will be restored from cache if not provided)

Details

vos_kill simply shuts down the local Virtuoso server, it does not remove any data stored in the database system. vos_kill() terminates the process, removing the process id from the process table.

See also

Examples

# \donttest{
if(has_virtuoso()){

  vos_start()
  vos_kill()

  }
#> Warning: Exiting, virtuoso template not found... is virtuoso installed?
#> PROCESS 'virtuoso-t', running, pid 2081.
#> Server is now starting up, this may take a few seconds...
#> virtuoso isn't running.
#> virtuoso isn't running.
#> No active virtuoso process detected.
#> NULL
# }