This question has been flagged
2 Replies
22247 Views

I just updated the latest modules from the launchpad using bazar (bzr pull) in to my local installation , and it cause this error. I guess some configuration changes happened after the update , but not clue where i went wrong

I followed below documentation for first time installation and it was working fine for a while,

help.openerp.com/question/2562/how-to-install-openerp-v70-on-ubuntu-1204-from-launchpad-repository/

My new openerp system user

openerp@nishad-Inspiron-N5010:~/v7/server$ pwd

/opt/openerp/v7/server

My openerp-server.conf file

[options]

; This is the password that allows database operations:

admin_passwd = admin

db_host = False

db_port = False

db_user = openerp

db_password = False

addons_path =/opt/openerp/v7/addons,/opt/openerp/v7/web/addons,/opt/openerp/v7/server/openerp/addons

;Log settings

logfile = /var/log/openerp/openerp-server.log

log_level = error

Run it from terminal

openerp@nishad-Inspiron-N5010:~/v7/server$./openerp-server --addons-path=../web/addons

i tried this one also,

openerp@nishad-Inspiron-N5010:~/v7/server$./openerp-server --addons-path=/web/addons

Here is my latest trunk branches

openerp@nishad-Inspiron-N5010:~/v7$ ls

addons server web

Avatar
Discard
Best Answer

Just add the option:
--addons-path=addons_path

Avatar
Discard
Best Answer

python2.7 odoo-bin --addons-path=/home/bista/backupfolder/source_code/odoo_10/general_procurement/ --xmlrpc-port 8888

Add -addons-path=addons,  before your path

python2.7 odoo-bin --addons-path=addons,/home/bista/backupfolder/source_code/odoo_10/general_procurement/ --xmlrpc-port 8888

Avatar
Discard