docs.roxen.comView this page in a printer friendly mode
DocsRoxenWebServer 4.5Administrator ManualServer Maintenance
Copyright © 2012, Roxen Internet Software
Suggestions, comments & compliments
manuals@roxen.com
 DEMO  DOCS  PIKE
 COMMUNITY  DOWNLOAD
www.roxen.com

   

Options for configure
Options for ./start

Options for ./start

--version

Display version information.

--help

Show help text.

--remove-dumped

Depending on configuration, Roxen may attempt to dump compiled pseudocode binaries of Pike files to avoid having to recompile them next time Roxen restarts. This option removes such files, making sure Roxen recompiles all files from the source code. This should not be necessary in normal operation, but may be useful when developing or debugging Roxen modules.

--verbose (short form: -v)

Give more diagnostics and progress information than usual.

--quiet (short form: -q)

Give less diagnostics and progress information than usual.

--offline

Disables DNS lookups and some other code that requires a net connection (most content boxes in the admin interface, for instance). In --offline mode, you can only bind ports to IP addresses (e g http://127.0.0.1/) or "*", unless your system has non-DNS means of resolving hostnames to IP addresses. On a unix system, this could be achieved by adding required host names to /etc/hosts.

--log-dir=DIRECTORY

Put log files in given directory. The default is '../logs'.

--config-dir=DIRECTORY

Look for configuration files in the given directory. The default is '../configuration'.

--with-threads or --without-threads

Whether to use threads (i.e. run several request handler threads in parallell) or not. The default depends on operating system.

--once

Only run Roxen once, and send the debug log to standard output. This is primarily useful for semi-interactive debugging, and means Roxen will not restart automatically when the process ends (even if it ends because the 'Restart' action was requested from the configuration interface).

This argument also implies --module-debug.

--with-keep-alive or --without-keep-alive

Whether to enable keep-alive request handling in the HTTP protocol. The current default is to enable keep-alive.

--with-debug or --without-debug

Whether to enable extra debug information or not.

Some further arguments can be given, which will not directly affect Roxen but rather be passed to the Pike binary that will run Roxen. This is mainly useful for enabling various forms of extra debugging.

-Dsymbol

Define the specified symbol for the Pike preprocessor, as if it had been defined as '#define symbol' in all Pike source files.

-Mpath

Set the Pike module path, i.e. the directory where Pike will look for Pike modules. (Do not confuse this with the path where Roxen looks for Roxen modules written in Pike. That path is configured through the configuration interface.)

-Ipath

Set the Pike include path, i.e. the directory where Pike will look for files when doing #include.

-Ppath

Set the path to the Pike binary.

More options are available, but they are mainly useful for developers and for debugging purposes. Do './start --help' for a complete (but more terse) list of options for the start script.