Odoo commands quick reference
Here is a quick reference for the most important Odoo commands:
-c,--conf=my.conf
: Sets the configuration file to use.--save
: Saves the config file.--stop,--stop-after-init
: Stops after module loading.-d,--database=mydb
: Uses this database.--db-filter=^mydb$
: Filters the databases that are available using a regular expression.-p,--http-port=8069
: The database port to use for HTTP.-i,--init=MODULES
: Installs the modules in a comma-separated list.-u,--update=MODULES
: Updates the modules in a comma-separated list.--log-level=debug
: The log level. Examples includedebug
,debug_sql
,debug_rpc
,debug_rpc_answer
, andwarn
. Alternatives for debugging specific core components are as follows:--log-sql
: DebugsSQL
calls--log-request
: Debugs HTTP request calls--log-response
: Debugs responses to HTTP calls--log-web
: Debugs HTTP request responses
--log-handler=MODULE:LEVEL
: Sets the log level for a specific module...