Skip to content

Commit

Permalink
Add instructions for stopping akka apps
Browse files Browse the repository at this point in the history
  • Loading branch information
capilkey authored Jun 6, 2017
1 parent 6f8f821 commit c46f5f8
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,6 @@ gradle resolveDeps
gradle war deploy
```

Remove old `bbb-web` app from tomcat

```
sudo rm /var/lib/tomcat7/webapps/bigbluebutton.war
```

## Manually start services

### Run Red5
Expand All @@ -137,6 +131,10 @@ cd ~/dev/bigbluebutton/akka-bbb-apps
# do once.
rm lib_managed/*
# We need to stop the existing packaged akka-apps
sudo systemctl stop bbb-apps-akka
# Now we can run our own
sbt clean
sbt run
```
Expand All @@ -153,6 +151,10 @@ cd ~/dev/bigbluebutton/akka-bbb-fsesl
# do once.
rm lib_managed/*
# We need to stop the existing packaged akka-fsesl
sudo systemctl stop bbb-fsesl-akka
# Now we can run our own
sbt clean
sbt run
```
Expand Down Expand Up @@ -181,6 +183,14 @@ sbt publish publishLocal

### Run bbb-web


First we need to remove the old `bbb-web` app from tomcat to avoid duplicate messages

```
sudo cp /var/lib/tomcat7/webapps/bigbluebutton.war /var/lib/tomcat7/webapps/bigbluebutton.war-packaged
sudo rm -r /var/lib/tomcat7/webapps/bigbluebutton
```

On your bbb-web terminal, start bbb-web

```
Expand Down

0 comments on commit c46f5f8

Please sign in to comment.