Service Mode
By default, when you run steampipe query
, Steampipe will start the database if it is not already running. In this case, the database only listens on the loopback address (127.0.0.1) - You cannot connect over the network. Steampipe will shut it down at the end of the query command or session if there are no other active steampipe sessions.
Alternatively, you can run Steampipe in service mode. Running steampipe service start
will run Steampipe as a local service, exposing it as a database endpoint for connection from any Postgres-compatible database client.
Starting the database in service mode
When you run steampipe service start
, Steampipe will start in service mode. Steampipe prints connection information to the console that you can use in connection strings for your application or 3rd party tools:
$ steampipe service startSteampipe service is running:Database:Host(s): localhost, 127.0.0.1, 192.168.10.174Port: 9193Database: steampipeUser: steampipePassword: 4cbe-4bc2-9c18Connection string: postgres://steampipe:4cbe-4bc2-9c18@localhost:9193/steampipeManaging the Steampipe service:# Get status of the servicesteampipe service status# Restart the servicesteampipe service restart# Stop the servicesteampipe service stop
Once the service is started, you can connect to the Steampipe from tools that integrate with Postgres.
Stopping the service
To stop the Steampipe service, issue the steampipe service stop
command.