Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
12257 Lượt xem

I setup my odoo using this script:
https://www.odoo.com/forum/help-1/question/guide-odoo-8-0-master-on-ubuntu-linux-install-script-56731

My question is:
Using an ssh terminal, I want to launch the openerp-server and watch the activity as I install modules and develop a new module. If I:

sudo service odoo-server stop

sudo su odoo

python /opt/odoo/odoo-server/openerp-server --addons=/opt/odoo/odoo-server/addons

I can see server running, but my config file is ignored. The master password becomes admin again and the addons path /opt/odoo/custom/addons can not be added to the cammand because the server says it is not recognized. If I run

python /opt/odoo/odoo-server/openerp-server -c /etc/odoo-server.conf

My terminal advances to the next line and then nothing happens until I control+C to stop... If the server is running I can not view output.

I had this all working in a v7 install but I'm lost at the moment, so any help would be greatly appreciated.

 

 

Ảnh đại diện
Huỷ bỏ

What are the contents of your odoo-server.conf file?

Try using -s option to save used configuration by the server.

Câu trả lời hay nhất

you can start server with python /opt/odoo/odoo-server/openerp-server -c /etc/odoo-server.conf

and if your odoo-server.conf contains instructions for writing to logifle you can watch your log with:
tail -f /var/log/odoo/odoo-server.log  (or any other valid logfile) 
for options of logging other than debug refer to this guide wich is for v7, but most options are still valid.

Different part is the
for v7 : log_handler = [':INFO', ...]  (as a python list)
and for v8 (git version) should be:
log_handler = :ALL,:DEBUG,openerp.orm:DEBUG,werkzeug:DEBUG
(just separated with comma, no brackets!)
 

Ảnh đại diện
Huỷ bỏ
Tác giả

Thank you.

Bài viết liên quan Trả lời Lượt xem Hoạt động
3
thg 7 25
8747
1
thg 5 25
1045
0
thg 1 24
1727
1
thg 2 22
23887
5
thg 12 21
16729