Kill ends the process started by vos_start()
Arguments
- p
a process object, returned by
vos_process()
orvos_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.
Examples
# \donttest{
if(has_virtuoso()){
vos_start()
vos_kill()
}
#> Warning: Exiting, virtuoso template not found... is virtuoso installed?
#> PROCESS 'virtuoso-t', running, pid 3175.
#> 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
# }