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:

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.