Project

General

Profile

Actions

MASS - Starting and Stopping » History » Revision 1

Revision 1/5 | Next »
Gareth Eaton, 12/24/2023 12:55 PM


MASS - Starting and Stopping

Stopping Containers

SSH into Proxmox Server: First, you need to SSH into your Proxmox server or access its command line through the console.

List All Running Containers: Use the command pct list to list all running containers. This will give you the IDs of the containers.

Stop Containers: To stop multiple containers, you can use a bash loop. For example:

for id in {101..110}; do pct stop $id; done

This command stops containers with IDs from 101 to 110. Adjust the range according to your container IDs.

Starting Containers

List All Stopped Containers: If needed, you can list all stopped containers using a command like pct list | grep stopped to identify which ones are not running.

Start Containers: Similarly, to start multiple containers, use a bash loop:

for id in {101..110}; do pct start $id; done

This will start containers with IDs from 101 to 110.

Updated by Gareth Eaton 11 months ago · 1 revisions