Starting and stopping the engine on UNIX or Linux systems

If you have an rc file installed, use these commands to start and stop the product:
$ /opt/buildforge/rc/buildforge start
$ /opt/buildforge/rc/buildforge stop
If you do not have an rc file installed, start the product using the following:
$ /<bfinstall>/Platform/buildforge &
Stop it by determining its process ID and then issuing a kill command:
$ ps aux | grep buildforge
$ kill ${<PID>}

Feedback