stork-tool - A Tool for Managing the Stork Server
Synopsis
stork-tool [global options] command [command options]
Description
stork-tool provides four features:
Certificate management - The tool allows the Stork server to export keys, certificates, and tokens that are used to secure communication between the Stork server and Stork agents.
Database Creation - The tool facilitates creating a new database for the Stork server and a user that can access this database with a generated password.
Database migration - The tool allows database schema migrations to be performed, overwriting the existing database schema version and getting its current value. There is normally no need to use this, as the Stork server always runs the migration scripts on startup.
Static views deployment - The tool allows custom content to be set in selected Stork views (e.g. a custom welcome message on the login page).
Certificate Management
stork-tool takes the following arguments (equivalent environment variables are listed in square brackets, where applicable):
cert-exportExports a certificate or other secret data. The options are:-f|--object=Specifies the object to dump, which can be one of
cakey,cacert,srvkey,srvcert, orsrvtkn.[$STORK_TOOL_CERT_OBJECT]-o|--file=Specifies the location of the file where the object should be saved.
[$STORK_TOOL_CERT_FILE]
To print the Certificate Authority key in the console:
$ stork-tool cert-export --db-url postgresql://user:pass@localhost/dbname -f cakey INFO[2021-05-25 12:36:07] connection.go:59 checking connection to database INFO[2021-05-25 12:36:07] certs.go:225 CA key: -----BEGIN PRIVATE KEY----- MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQghrTv9SVZ/hv0xSM+ jvUk+VehIcf1tD/yMfAF4IiVXaahRANCAATgene6dVwo1xCmYjMKYxSrxgOWRm2G R5X1x72axq2cAhCFm7EpD88oYZ3EBdoXmG9fihV5ZGtfFkSpIdzCNPQI -----END PRIVATE KEY-----
To export the server certificate to a file:
$ stork-tool cert-export --db-url postgresql://user:pass@localhost/dbname -f srvcert -o srv-cert.pem INFO[2021-05-25 12:36:46] connection.go:59 checking connection to database INFO[2021-05-25 12:36:46] certs.go:221 server cert saved to file: srv-cert.pem
cert-importImports a certificate or other secret data. The options are:-f|--object=Specifies the object to dump, which can be one ofcakey,cacert,srvkey,srvcert, orsrvtkn.[$STORK_TOOL_CERT_OBJECT]-i,--file=Specifies the location of the file from which the object is loaded.[$STORK_TOOL_CERT_FILE]To read the server token from stdin:
$ echo abc | stork-tool cert-import --db-url postgresql://user:pass@localhost/dbname -f srvtkn INFO[2021-08-11 13:31:55] connection.go:59 checking connection to database INFO[2021-08-11 13:31:55] certs.go:259 reading server token from stdin INFO[2021-08-11 13:31:55] certs.go:261 server token read from stdin, length 4
To import the server certificate from a file:
$ stork-tool cert-import --db-url postgresql://user:pass@localhost/dbname -f srvcert -i srv.cert INFO[2021-08-11 15:22:28] connection.go:59 checking connection to database INFO[2021-08-11 15:22:28] certs.go:257 server cert loaded from srv.cert file, length 14
Database Creation
stork-tool offers the following commands for creating the database for the Stork server:
db-createCreates a new database.db-password-genGenerates a random database password.
There are several options specific to the db-create command:
-m,--db-maintenance-nameThe existing maintenance database name. The default is “postgres”.
[$STORK_DATABASE_MAINTENANCE_NAME]-a,--db-maintenance-userThe database administrator user name. The default is “postgres”.
[$STORK_DATABASE_MAINTENANCE_USER_NAME]--db-maintenance-passwordThe database administrator password; if not specified, the user is prompted for the password if necessary.
[$STORK_DATABASE_MAINTENANCE_PASSWORD]-f,--forceRecreates the database and the user if they exist. The default is
false.
Examples
Create a new database stork with user stork and a generated password:
$ stork-tool db-create --db-maintenance-user postgres --db-name stork --db-user stork
INFO[2022-01-25 17:04:56] main.go:145 created database and user for the server with the following credentials database_name=stork password=L82B+kJEOyhDoMnZf9qPAGyKjH5Qo/Xb user=stork
When a database is created using the psql tool, it is sometimes useful to generate
a hard-to-guess password for this database:
$ stork-tool db-password-gen
INFO[2022-01-25 17:56:31] main.go:157 generated new database password password=znYDfWzvMhWRZyJJuu3EvUxH5KMi1SmJ
Database Migration
stork-tool offers the following commands:
db-initCreates a schema versioning table in the database.db-upRuns all available migrations; use-tto migrate to a specific version.db-downReverts the last migration; use-tto migrate to a specific version.db-resetReverts all migrations.db-versionPrints the current migration version.db-set-versionSets the database version without running migrations.The following option is specific to the
db-up,db-down, anddb-set-versioncommands:-t|--version=Specifies the target database schema version. The default is
stork.[$STORK_TOOL_DB_VERSION]
To initialize a database schema:
$ STORK_DATABASE_PASSWORD=pass stork-tool db-init -u user -d dbname
INFO[2021-05-25 12:30:53] connection.go:59 checking connection to database
INFO[2021-05-25 12:30:53] main.go:100 Database version is 0 (new version 33 available)
To overwrite the current schema version to an arbitrary value:
$ STORK_DATABASE_PASSWORD=pass stork-tool db-set-version -u user -d dbname -t 42
INFO[2021-05-25 12:31:30] main.go:77 Requested setting version to 42
INFO[2021-05-25 12:31:30] connection.go:59 checking connection to database
INFO[2021-05-25 12:31:30] main.go:94 Migrated database from version 0 to 42
Common Options
The following options pertain to both the db- and cert- commands:
--db-url=Specifies the URL for the Stork PostgreSQL database; mutually exclusive with the host, port, username, and password.
[$STORK_DATABASE_URL]-u|--db-user=Specifies the user name for database connections. The default is
stork.[$STORK_DATABASE_USER_NAME]--db-password=Specifies the database password for database connections. If not specified, the user is prompted for the password if necessary.
[$STORK_DATABASE_PASSWORD]--db-host=Specifies the name of the host, IP address, or socket path for the database connection. The default value depends on the system.
[$STORK_DATABASE_HOST]-p|--db-port=Specifies the port on which the database is available. The default is 5432.
[$STORK_DATABASE_PORT]-d|--db-name=Specifies the name of the database to connect to. The default is
stork.[$STORK_DATABASE_NAME]--db-sslmodeSpecifies the SSL mode for connecting to the database; possible values are
disable,require,verify-ca, orverify-full. The default isdisable.[$STORK_DATABASE_SSLMODE]Acceptable values are:disableDisables encryption between the Stork server and the PostgreSQL database.requireUses secure communication but does not verify the server’s identity, unless the root certificate location is specified and that certificate exists. If the root certificate exists, the behavior is the same as in the case ofverify-ca.verify-caUses secure communication and verifies the server’s identity by checking it against the root certificate stored on the Stork server machine.verify-fullUses secure communication and verifies the server’s identity against the root certificate. In addition, checks that the server hostname matches the name stored in the certificate.--db-sslcertSpecifies the location of the SSL certificate used by the server to connect to the database.
[$STORK_DATABASE_SSLCERT]--db-sslkeySpecifies the location of the SSL key used by the server to connect to the database.
[$STORK_DATABASE_SSLKEY]--db-sslrootcertSpecifies the location of the root certificate file used to verify the database server’s certificate.
[$STORK_DATABASE_SSLROOTCERT]--db-trace-queries=Enables tracing of SQL queries. Possible values are
run- only runtime, without migrations,all- both migrations and runtime, ornone- disables the query logging.[$STORK_DATABASE_TRACE_QUERIES]--db-read-timeoutThe timeout for socket reads. If reached, commands will fail instead of blocking, zero disables the timeout; requires unit: ms (milliseconds), s (seconds), m (minutes), e.g.: 42s The default is 0.
[$STORK_DATABASE_READ_TIMEOUT]--db-write-timeoutThe timeout for socket writes; if reached, commands fail instead of blocking. Zero disables the timeout. Requires a unit: ms (milliseconds), s (seconds), or m (minutes), e.g.: 42s. The default is 0.
[$STORK_DATABASE_WRITE_TIMEOUT]-h|--helpShows a help message.
Note that there is no argument for the database password, as command-line arguments can sometimes be seen
by other users. The password can be set using the STORK_DATABASE_PASSWORD variable.
Stork logs on INFO level by default. Other levels can be configured using the
STORK_LOG_LEVEL variable. Allowed values are: DEBUG, INFO, WARN, ERROR.
To control the logging colorization, Stork supports the CLICOLOR and
CLICOLOR_FORCE standard UNIX environment variables. Use CLICOLOR_FORCE to
enforce enabling or disabling ANSI colors usage. Set CLICOLOR to 0 or
false to disable colorization even if the TTY is attached.
Static Views Deployment
To set a custom welcome message on the login screen, first create a short HTML
file with the message contents. Next, deploy the file using the
deploy-login-page-welcome command with the following options:
-i|--file=An HTML source file with a custom welcome message.
[$STORK_TOOL_LOGIN_SCREEN_WELCOME_FILE]-d|--rest-static-files-dir=The directory with static files for the UI; if not provided, the tool tries to use default locations.
[$STORK_TOOL_REST_STATIC_FILES_DIR]
To remove the welcome message, use the undeploy-login-page-welcome command
with the following option:
-d|--rest-static-files-dir=The directory with static files for the UI; if not provided, the tool tries to use default locations.
[$STORK_TOOL_REST_STATIC_FILES_DIR]
In a typical installation, there is no need to specify the directory with
the UI static files; stork-tool assumes the directory relative to its
location. For example, if stork-tool is installed in the /usr/bin directory,
it assumes that the directory for UI files is /usr/share/stork/www.
Mailing Lists and Support
There are public mailing lists available for the Stork project. stork-users (stork-users at lists.isc.org) is intended for Stork users. stork-dev (stork-dev at lists.isc.org) is intended for Stork developers, prospective contributors, and other advanced users. The lists are available at https://www.isc.org/mailinglists. The community provides best-effort support on both of those lists.
History
stork-tool was first coded in October 2019 by Marcin Siodelski; at that time it was called
stork-db-migrate. In 2021, it was refactored as stork-tool and commands for Certificate Management
were added by Michal Nowikowski.
See Also
stork-agent(8), stork-server(8)