Starting the Server - nuandy/othello GitHub Wiki

To start Othello:

Note: Assumes you have python accessible from the command line and Othello is installed under: /web/othello

  1. cd /web/othello
  2. python bin/owfstart.py --app=yourapp

Once the server starts up, your application can be accessed at: http://localhost:8080. You can configure this setting here: /web/othello/server/start.config.

If you require SSL enabled pages:

  1. python bin/owfstart.py --app=yourapp --ssl

Note: Please follow these instructions to setup SSL on Jetty 6: http://docs.codehaus.org/display/JETTY/How+to+configure+SSL

To start the server as a daemon on MAC OS X (Snow Leopard):

  1. Place /web/othello/bin/othello.plist file in /Library/LaunchDaemons on MAC OS X
  2. Run this command to load/start Othello's Jetty Server as a daemon: launchctl load /Library/LaunchDaemons/othello.plist
  3. Run this command to unload/stop Othello's Jetty Server as a daemon: launchctl unload /Library/LaunchDaemons/othello.plist