Trigger files
The following files (in the project root directory) can be used to turn off various parts of a project.
stop_schedHave the scheduler return 'project down' messages.
stop_daemonsTell all daemon process to exit.
stop_webHave the web site return 'project down' messages for all functions that require database access.
The presence of a file triggers the function. For example, to turn off data-driven web pages, type
touch stop_weband to them back on, type
rm stop_web
If all three files are present, no database access will occur. You should do this during most maintenance functions (such as upgrading software).
bin/startStart the project: start all daemons, and remove the stop_sched and stop_daemon files.
bin/stopStop the project (create the stop_sched and stop_daemon files)
bin/start --cronIf the project is started, perform all periodic tasks that are past due, and start any daemons that aren't running. Otherwise do nothing.
bin/statusShow whether the project is stopped. Show the status of all daemons. Show the status of all periodic tasks (e.g., when they were last executed). "; page_tail(); ?>