BuildForge Help

Starting and Stopping the Engine on Linux or Solaris Systems

If you have an rc file installed (typically in /etc/rc.d/init.d):
$ /<path to rc file>/buildforge start
$ /<path to rc file>/buildforge stop
If you do not have an rc file installed, start engine using the following:
$ /<path to system installation>/Platform/buildforge.pl &
Stop it by determining its process ID and then issuing a kill command:
$ ps aux | grep buildforge
$ kill ${<PID>}