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
