Skip to content

Instantly share code, notes, and snippets.

@cereal-s
Last active March 18, 2019 11:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cereal-s/52d229a33401e3fb04744d836ed69cd0 to your computer and use it in GitHub Desktop.
Save cereal-s/52d229a33401e3fb04744d836ed69cd0 to your computer and use it in GitHub Desktop.
Bitnami service not working

If an instance of Bitnami (Wordpress, Prestashop) is timing out, verify if the services are running:

sudo service --status-all

You should see the bitnami service on:

[+] bitnami

Try to restart this:

sudo service bitnami restart

If it does not work, then run the ctlscript.sh:

sudo /opt/bitnami/ctlscript.sh status

You'll see three options: [mysql, php-fpm, apache]. In my case I did not have success in restarting mysql, so I forced a quit by searching the PID and then killing it:

> sudo pgrep mysql
< 123
> sudo kill -9 123

And finally could start it again and make the instance available again. This was done with a testing ISO and did not care about potential loss of data, avoid this approach on live systems.

REFERENCES

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment