I want to activate a Bitnami WordPress plugin on Amazon Lightsail?
Resolution
Use the WordPress Admin dashboard or WP-CLI to activate a Bitnami WordPress plugin.
Activate a Bitnami plugin with the WordPress Admin dashboard
- Open the WordPress Admin dashboard.
Note: The default WordPress admin dashboard's web address is your domain name followed by /wp-admin. For example: https://example.com/wp-admin.
- Log in with your username and password.
- Select Plugins in the left sidebar, then find the plugin that you want to activate.
- Under the plugin's name, select Activate to activate the plugin.
-or-
To deactivate the plugin, select Deactivate.
Activate a Bitnami plugin with WP-CLI
-
Use SSH to connect to Lightsail.
-
List the installed plugins:
sudo wp plugin list
-
Activate the plugin:
Note: Replace example-plugin with the plugin that you want to activate.
sudo wp plugin activate example-plugin
-or-
You can also deactivate the plugin:
sudo wp plugin deactivate example-plugin
Verify that a plugin is active
- Open the WordPress Admin dashboard.
-or-
If your WordPress Admin dashboard is already open, then refresh it.
- Log in with your username and password.
- Select Plugins in the left sidebar, then find the plugin that you activated.
- If the plugin is active, then the option under its name shows Deactivate. If the plugin is not active, then the option shows Activate.