Ignition Service
Stop and Start Ignition
After installation, you can start and stop Ignition with the following commands:
Code Block |
---|
|
/etc/init.d/ignition start |
Code Block |
---|
|
/etc/init.d/ignition stop |
Remove Service
When installing under Ubuntu, Ignition starts automatically whenever the computer reboots. If you wish to stop this behavior, you need to use the update-rc.d tool to remove the service (uninstalling Ignition also removes the service) as follows:
Code Block |
---|
|
/etc/init.d/ignition stop
update-rc.d -f ignition remove
rm /etc/init.d/ignition |
When installing under other Linux distributions, use that distribution's method to automatically start a program after reboot.
For example, this command auto-starts Ignition installed in a Fedora 15 system (run as root user):
Code Block |
---|
|
chkconfig --level 2345 ignition on |
Set the system PATH
For Ubuntu installations, the installation directory is automatically appended to the system PATH. You can start programs like the Gateway Control Utility from the command line without specifying a complete path to the installation directory.
Note that after installation, you need to close and reopen the command shell for the PATH change to take effect. For other Linux installations, you need to manually add /usr/local/bin/ignition
(or your installation directory) to any script that can set the system PATH (such as .profile
or .bashrc
).