zoukankan      html  css  js  c++  java
  • odoo 修改res.partner,res.users 模型后导致的进入页面报错问题

    如果服务重启之前没有关闭之前的升级页面,倒是可以在重启服务后直接点击升级按钮升级

    使用命令行升级:

    1. 直接在宿主机上启动的服务
    odoo -u moduel_name -d db_name
    
    1. 在docker 中的服务
    # 需要添加`--no-http` 参数,否则会报端口冲突错误
    odoo -u moduel_name -d db_name --no-http
    

    odoo 参数说明:

    odoo@iZrj98w1n1tjmydk1o8jd6Z:/$ odoo --help
    Usage: odoo [options]
    
    Options:
      --version             show program's version number and exit
      -h, --help            show this help message and exit
    
      Common options:
        -c CONFIG, --config=CONFIG
                            specify alternate config file
        -s, --save          save configuration to ~/.odoorc (or to
                            ~/.openerp_serverrc if it exists)
        -i INIT, --init=INIT
                            install one or more modules (comma-separated list, use
                            "all" for all modules), requires -d
        -u UPDATE, --update=UPDATE
                            update one or more modules (comma-separated list, use
                            "all" for all modules). Requires -d.
        --without-demo=WITHOUT_DEMO
                            disable loading demo data for modules to be installed
                            (comma-separated, use "all" for all modules). Requires
                            -d and -i. Default is none
        -P IMPORT_PARTIAL, --import-partial=IMPORT_PARTIAL
                            Use this for big data importation, if it crashes you
                            will be able to continue at the current state. Provide
                            a filename to store intermediate importation states.
        --pidfile=PIDFILE   file where the server pid will be stored
        --addons-path=ADDONS_PATH
                            specify additional addons paths (separated by commas).
        --load=SERVER_WIDE_MODULES
                            Comma-separated list of server-wide modules.
        -D DATA_DIR, --data-dir=DATA_DIR
                            Directory where to store Odoo data
    
      HTTP Service Configuration:
        --http-interface=HTTP_INTERFACE
                            Listen interface address for HTTP services. Keep empty
                            to listen on all interfaces (0.0.0.0)
        -p PORT, --http-port=PORT
                            Listen port for the main HTTP service
        --longpolling-port=PORT
                            Listen port for the longpolling HTTP service
        --no-http           Disable the HTTP and Longpolling services entirely
        --proxy-mode        Activate reverse proxy WSGI wrappers (headers
                            rewriting) Only enable this when running behind a
                            trusted web proxy!
    
      Web interface Configuration:
        --db-filter=REGEXP  Regular expressions for filtering available databases
                            for Web UI. The expression can use %d (domain) and %h
                            (host) placeholders.
    
      Testing Configuration:
        --test-file=TEST_FILE
                            Launch a python test file.
        --test-enable       Enable unit tests.
        --test-tags=TEST_TAGS
                            Comma separated list of spec to filter which tests to
                            execute. Enable unit tests if set.
                            A filter spec has the format:
                            [-][tag][/module][:class][.method]
                            The '-' specifies if we want to include or exclude
                            tests matching this spec.                          The
                            tag will match tags added on a class with a @tagged
                            decorator. By default tag value is 'standard' when not
                            given on include mode. '*' will match all tags. Tag
                            will also match module name (deprecated, use /module)
                            The module, class, and method will respectively match
                            the module name, test class name and test method name.
                            examples: :TestClass.test_func,/test_module,external
    
      Logging Configuration:
        --logfile=LOGFILE   file where the server log will be stored
        --logrotate         enable logfile rotation
        --syslog            Send the log to the syslog server
        --log-handler=PREFIX:LEVEL
                            setup a handler at LEVEL for a given PREFIX. An empty
                            PREFIX indicates the root logger. This option can be
                            repeated. Example: "odoo.orm:DEBUG" or
                            "werkzeug:CRITICAL" (default: ":INFO")
        --log-request       shortcut for --log-handler=odoo.http.rpc.request:DEBUG
        --log-response      shortcut for --log-
                            handler=odoo.http.rpc.response:DEBUG
        --log-web           shortcut for --log-handler=odoo.http:DEBUG
        --log-sql           shortcut for --log-handler=odoo.sql_db:DEBUG
        --log-db=LOG_DB     Logging database
        --log-db-level=LOG_DB_LEVEL
                            Logging database level
        --log-level=LOG_LEVEL
                            specify the level of the logging. Accepted values:
                            ['info', 'debug_rpc', 'warn', 'test', 'critical',
                            'debug_sql', 'error', 'debug', 'debug_rpc_answer',
                            'notset'].
    
      SMTP Configuration:
        --email-from=EMAIL_FROM
                            specify the SMTP email address for sending email
        --smtp=SMTP_SERVER  specify the SMTP server for sending email
        --smtp-port=SMTP_PORT
                            specify the SMTP port
        --smtp-ssl          if passed, SMTP connections will be encrypted with SSL
                            (STARTTLS)
        --smtp-user=SMTP_USER
                            specify the SMTP username for sending email
        --smtp-password=SMTP_PASSWORD
                            specify the SMTP password for sending email
    
      Database related options:
        -d DB_NAME, --database=DB_NAME
                            specify the database name
        -r DB_USER, --db_user=DB_USER
                            specify the database user name
        -w DB_PASSWORD, --db_password=DB_PASSWORD
                            specify the database password
        --pg_path=PG_PATH   specify the pg executable path
        --db_host=DB_HOST   specify the database host
        --db_port=DB_PORT   specify the database port
        --db_sslmode=DB_SSLMODE
                            specify the database ssl connection mode (see
                            PostgreSQL documentation)
        --db_maxconn=DB_MAXCONN
                            specify the maximum number of physical connections to
                            PostgreSQL
        --db-template=DB_TEMPLATE
                            specify a custom database template to create a new
                            database
    
      Internationalisation options. :
        Use these options to translate Odoo to another language. See i18n
        section of the user manual. Option '-d' is mandatory. Option '-l' is
        mandatory in case of importation
    
        --load-language=LOAD_LANGUAGE
                            specifies the languages for the translations you want
                            to be loaded
        -l LANGUAGE, --language=LANGUAGE
                            specify the language of the translation file. Use it
                            with --i18n-export or --i18n-import
        --i18n-export=TRANSLATE_OUT
                            export all sentences to be translated to a CSV file, a
                            PO file or a TGZ archive and exit
        --i18n-import=TRANSLATE_IN
                            import a CSV or a PO file with translations and exit.
                            The '-l' option is required.
        --i18n-overwrite    overwrites existing translation terms on updating a
                            module or importing a CSV or a PO file.
        --modules=TRANSLATE_MODULES
                            specify modules to export. Use in combination with
                            --i18n-export
    
      Security-related options:
        --no-database-list  Disable the ability to obtain or view the list of
                            databases. Also disable access to the database manager
                            and selector, so be sure to set a proper --database
                            parameter first
    
      Advanced options:
        --dev=DEV_MODE      Enable developer mode. Param: List of options
                            separated by comma. Options : all,
                            [pudb|wdb|ipdb|pdb], reload, qweb, werkzeug, xml
        --shell-interface=SHELL_INTERFACE
                            Specify a preferred REPL to use in shell mode.
                            Supported REPLs are: [ipython|ptpython|bpython|python]
        --stop-after-init   stop the server after its initialization
        --osv-memory-count-limit=OSV_MEMORY_COUNT_LIMIT
                            Force a limit on the maximum number of records kept in
                            the virtual osv_memory tables. The default is False,
                            which means no count-based limit.
        --osv-memory-age-limit=OSV_MEMORY_AGE_LIMIT
                            Force a limit on the maximum age of records kept in
                            the virtual osv_memory tables. This is a decimal value
                            expressed in hours, and the default is 1 hour.
        --max-cron-threads=MAX_CRON_THREADS
                            Maximum number of threads processing concurrently cron
                            jobs (default 2).
        --unaccent          Use the unaccent function provided by the database
                            when available.
        --geoip-db=GEOIP_DATABASE
                            Absolute path to the GeoIP database file.
    
      Multiprocessing options:
        --workers=WORKERS   Specify the number of workers, 0 disable prefork mode.
        --limit-memory-soft=LIMIT_MEMORY_SOFT
                            Maximum allowed virtual memory per worker, when
                            reached the worker be reset after the current request
                            (default 2048MiB).
        --limit-memory-hard=LIMIT_MEMORY_HARD
                            Maximum allowed virtual memory per worker, when
                            reached, any memory allocation will fail (default
                            2560MiB).
        --limit-time-cpu=LIMIT_TIME_CPU
                            Maximum allowed CPU time per request (default 60).
        --limit-time-real=LIMIT_TIME_REAL
                            Maximum allowed Real time per request (default 120).
        --limit-time-real-cron=LIMIT_TIME_REAL_CRON
                            Maximum allowed Real time per cron job. (default:
                            --limit-time-real). Set to 0 for no limit.
        --limit-request=LIMIT_REQUEST
                            Maximum number of request to be processed per worker
                            (default 8192).
    
    

    懂得,原来世界如此简单!

  • 相关阅读:
    C# 文件流
    SQL语句(十八_补充)——存储过程
    SQL语句(十九)——存储过程(练习)
    SQL语句(十八)—— 存储过程
    软件测试(二)PICT的使用 组合测试方法(两两组合测试,可遍历组合测试)
    Swing布局管理器
    软件测试(一)-黑盒测试 随机测试技巧
    (一)在Lingo中使用集合
    数学建模 TSP(旅行商问题) Lingo求解
    哲学家进餐问题
  • 原文地址:https://www.cnblogs.com/qianxunman/p/14812090.html
Copyright © 2011-2022 走看看