How do I stop, start, restart, or check the status of a Bitnami service in Lightsail?

1 minute read
0

I want to stop, start, restart, or check the status of a Bitnami service in Amazon Lightsail.

Resolution

Use the Bitnami control script to stop, start, restart, or check the status of services in Lightsail. For more information, see Start or stop services on the Bitnami website.

Check the status of services

Check the status of all the services:

sudo /opt/Bitnami/ctlscript.sh status

Check the status of one service:
Note: Replace example-service with the service that you want to check.

sudo /opt/Bitnami/ctlscript.sh status example-service

Stop, start, or restart services

Stop all services:

sudo /opt/Bitnami/ctlscript.sh stop

Start all services:

sudo /opt/Bitnami/ctlscript.sh start

Restart all services:

sudo /opt/Bitnami/ctlscript.sh restart

To stop, start, or restart one service in Lightsail, use the following commands:
Note: Replace example-service with the service that you want to stop, start, or restart.

Stop one service:

sudo /opt/Bitnami/ctlscript.sh stop example-service

Start one service:

sudo /opt/Bitnami/ctlscript.sh start example-service

Restart one service:

sudo /opt/Bitnami/ctlscript.sh restart example-service
AWS OFFICIAL
AWS OFFICIALUpdated a month ago