Commit 3d5f4cdedcec1a42283f0c8d71182c0a7f241b8c

Authored by Andrei Gliga
1 parent c9c5a9bc
Exists in master

instructions to get the status or to stop puma

Showing 1 changed file with 13 additions and 0 deletions   Show diff stats
docs/deployment/capistrano.md
@@ -46,6 +46,19 @@ To start Errbit, you can run: @@ -46,6 +46,19 @@ To start Errbit, you can run:
46 bundle exec cap production puma:start 46 bundle exec cap production puma:start
47 ``` 47 ```
48 48
  49 +## Status of Errbit
  50 +To check if the Errbit server is running you can run:
  51 +```bash
  52 +bundle exec cap production puma:status
  53 +```
  54 +
  55 +## Stopping Errbit
  56 +To stop Errbit run
  57 +
  58 +```bash
  59 +bundle exec cap production puma:stop
  60 +```
  61 +
49 Supervising and monitoring Errbit is beyond the scope of this 62 Supervising and monitoring Errbit is beyond the scope of this
50 documentation. 63 documentation.
51 64