stardog-admin server start Manual Page
NAME
stardog-admin server start —Starts the Stardog Server.
SYNOPSIS
stardog-admin server start [ --bind <network interface> ] [ --daemon ] [ --disable-security ] [ --enable-ssl ] [ --force-join ] [ --foreground ] [ --home <home> ] [ --insecure-geo-replica ] [ --no-cors ] [ --port <port> ] [ --require-ssl ] [ --safe ] [ --ssl-cert-required ] [ --ssl-port <ssl-port> ] [ --upgrade ] [ {-v | --verbose} ] [ --wait-init ]
OPTIONS
--bind <network interface>
Specify the address of the network interface the Stardog server should bind to, the default is 0.0.0.0 Port should be specified separately with the --port option.
Flag to start this application in the background without waiting for the server to start listening.
Disable security flag. If this flag is set, security for the server is completely disabled.
Enable SSL for the server; server will automatically enable SSL on a per-connection basis to support secure & unsecured clients.
Cluster only: Forcibly join an empty cluster and drop any additional databases on this node.
Flag to start this application in the foreground.
Stardog home directory location.
Geo replicated nodes only: Connect to Stardog via http instead of https (not recommended).
No CORS support flag. If this flag is set, CORS support in the HTTP server will be disabled.
Specify the port the server will bind to
Require SSL for the server; client connections which do not use SSL will be immediately closed.
Flag to start this application in the safe mode.
Server requires clients to use a valid certificate when connecting via SSL; automatically enables SSL and requires its usage.
Specify the port the server will bind for SSL. Default is --port for --require-ssl, [--port + 1] for --enable-ssl
Automatically upgrade any indexes which use an obsolete format. Upgrades are generally one-directional without a possibility to downgrade, thus it is advised to make a server backup first.
Flag that can cause more detailed information to be printed such as errors and status. Exact output depends upon the command and options used.
Flag for the server to wait until the kernel is fully initialized.
DISCUSSION
By default, the HTTP server listens on 0.0.0.0:5820. A different port for the server can be specified with the --port option and a different bind location using --bind.
EXAMPLES
Start a Stardog server with the default options:
$ stardog-admin server start
Start a Stardog server with security disabled:
$ stardog-admin server start --disable-security
Run a Stardog server on localhost only with a different port
$ stardog-admin server start --bind 127.0.0.1 --port 5804
Start a Stardog server which requires SSL connections from clients
$ stardog-admin server start --require-ssl