You are here: Home OpenERP Install Optimizing openERP
Search
Advanced Search…
E-Mail

Webmail: webmail.wyden.com

E-Mail Preferences: postfix.wyden.com/users

E-Mail Administration: postfix.wyden.com

Statistics
Total: 473
Total Pages: 286
Total Folders: 87
Total Files: 18
Total Links: 26
Last modification: 19.04.2012 15:21
 

Optimizing openERP

by Wyden Silvan last modified 13.11.2009 18:34

If you wan't see all the output openERP produces, change the file /usr/bin/openerp-server:

exec /usr/bin/python ./openerp-server.py $@ 2>&1 >/var/log/openerp/openerp.log &

 For the .sh web file you must make a new file /usr/bin/openerp-web2:

#!/bin/sh
openerp-web >/var/log/openerp-web/openerp-web.log 2>&1 >/var/log/openerp-web/openerp-web.log &

And finally we want to start it automatically at the startup: /etc/init.d/openerp-start

#!/bin/sh
openerp-server
openerp-web2