stop

Stop local Prisma Postgres servers

The prisma dev stop command stops one or more local Prisma Postgres databases.

Usage

prisma dev stop [options] <name>

Arguments

ArgumentDescription
<name>Name(s) or glob pattern(s) of the server(s) to stop

Options

OptionDescriptionDefault
--debugEnable debug loggingfalse

Examples

Stop a specific database

npx prisma dev stop mydb

Stop multiple databases with a pattern

Stop all databases starting with mydb:

npx prisma dev stop mydb*

The stop command is interactive and includes safety prompts to prevent accidental operations.

On this page