Loading...

CLI Overview

Quick Start Guide

wheels info

wheels reload

wheels deps

wheels destroy

wheels watch

wheels generate app

wheels generate app-wizard

wheels generate controller

wheels generate model

wheels generate view

wheels generate property

wheels generate route

wheels generate resource

wheels generate api-resource

wheels generate frontend

wheels generate test

wheels generate snippets

wheels scaffold

wheels test

wheels test run

wheels test coverage

wheels test debug

wheels config list

wheels config set

wheels config env

wheels env

wheels env setup

wheels env list

wheels env switch

wheels environment

wheels console

wheels runner

wheels server

wheels server start

wheels server stop

wheels server restart

wheels server status

wheels server log

wheels server open

wheels plugins

wheels plugins list

wheels plugins install

wheels plugins remove

wheels analyze

wheels analyze code

wheels analyze performance

wheels analyze security

wheels security

wheels security scan

wheels optimize

wheels optimize performance

wheels docs

wheels docs generate

wheels docs serve

wheels ci init

wheels docker init

wheels docker deploy

wheels deploy

wheels deploy audit

wheels deploy exec

wheels deploy hooks

wheels deploy init

wheels deploy lock

wheels deploy logs

wheels deploy proxy

wheels deploy push

wheels deploy rollback

wheels deploy secrets

wheels deploy setup

wheels deploy status

wheels deploy stop

Configuration Management

Creating Commands

Service Architecture

Migrations Guide

Testing Guide

Ask or search...
Ctrl K
Loading...

wheels server stop (Coming Soon)

This command may not work as expected. A complete and stable version is coming soon.

Stop the Wheels development server.

Synopsis

wheels server stop [options]

Description

The wheels server stop command stops a running CommandBox server. It provides a simple way to shut down your development server cleanly.

Options

name

  • Type: String
  • Description: Name of the server to stop (if multiple servers are running)
  • Example: wheels server stop name=myapp

--force

  • Type: Boolean flag
  • Description: Force stop all running servers
  • Example: wheels server stop --force

Examples

# Stop the default server
wheels server stop

# Stop a specific named server
wheels server stop name=myapp

# Force stop all servers
wheels server stop --force

Notes

  • If no server name is specified, stops the server in the current directory
  • Use --force to stop all running servers at once
  • The command will confirm when the server has been stopped successfully

See Also