Skip to content
This repository has been archived by the owner on Jan 5, 2019. It is now read-only.

Commit

Permalink
Merge pull request #112 from ualbertalib/pgwillia-patch
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
pbinkley committed Feb 27, 2015
2 parents 0f234ab + 8a24c96 commit 33256c7
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,36 @@ To Run Tests:

```rake spec```

To Restart Components
---
* Jetty
* ```cd /var/www/sites/hydranorth && rake jetty:restart```
* Resque/Redis
* ```service resque-pool restart```
* Rails/Passenger/Httpd
* ```service httpd restart```

To Reset Components
---
* Jetty

```
rake jetty:stop
rake jetty:clean
rake sufia:jetty:config
rake jetty:start
```
* Resque/Redis
```
redis-cli
$ FLUSHALL
$ exit
```
```
kill -9 `ps aux | grep [r]esque | grep -v grep | cut -c 10-16` # another way to stop all resque workers
service resque-pool start
```
* MySQL
```
rake db:reset
```

0 comments on commit 33256c7

Please sign in to comment.