71
$ sudo easy_install -U openerp-web
71
$ sudo easy_install -U openobject-web
73
73
all other dependencies will be installed automatically by setuptools...
77
Locate the `config/openerp-web.cfg` in the installed `EGG`, and make
77
Locate the `config/openobject-web.cfg` in the installed `EGG`, and make
78
78
appropriate changes, especially:
81
81
server = "localhost"
83
83
protocol = "socket"
88
88
port is the OpenERP server port...
89
89
protocol is the protocol to be used (socket, http or https)
91
Now start the web server with `openerp-web` command:
91
Now start the web server with `openobject-web` command:
95
95
If you see message showing `IOError: Port 8080 not free on '0.0.0.0'` make
96
96
sure no other application is running on the specified port (8080 is default).
98
98
You can change port by changing `server.socket_port` value in
99
`config/openerp-web.cfg`.
99
`config/openobject-web.cfg`.
101
101
If everything is fine, open your favourite web browser and type
102
102
http://localhost:8080/, and your can see welcome page with login screen.
115
115
This has been tested on `ubuntu` only.
117
$ sudo cp /path/to/openerp_web-5.0.2-py2.5.egg/scripts/openerp-web /etc/init.d/
118
$ sudo cp /path/to/openerp_web-5.0.2-py2.5.egg/config/openerp-web.cfg /etc/
120
edit `/etc/init.d/openerp-web`:
124
and `/etc/openerp-web.cfg`:
126
log.access_file = "/var/log/openerp-web/access.log"
127
log.error_file = "/var/log/openerp-web/error.log"
117
$ sudo cp /path/to/openobject_web-5.0.2-py2.5.egg/scripts/openobject-web /etc/init.d/
118
$ sudo cp /path/to/openobject_web-5.0.2-py2.5.egg/config/openobject-web.cfg /etc/
120
edit `/etc/init.d/openobject-web`:
124
and `/etc/openobject-web.cfg`:
126
log.access_file = "/var/log/openobject-web/access.log"
127
log.error_file = "/var/log/openobject-web/error.log"
129
129
Now run following command to start the OpenERP Web automatically on system startup.
131
$ sudo mkdir /var/log/openerp-web
132
$ sudo chown -R openerp /var/log/openerp-web
133
$ sudo update-rc.d openerp-web
131
$ sudo mkdir /var/log/openobject-web
132
$ sudo chown -R openobject /var/log/openobject-web
133
$ sudo update-rc.d openobject-web
135
135
Start the deamon:
137
$ sudo /etc/init.d/openerp-web start
137
$ sudo /etc/init.d/openobject-web start
139
139
-------------------------------------------------------------------------------
140
140
4. WINDOWS INSTALLATION
222
222
This method only works if you want your OpenERP Web application at the
223
223
root of your server (https://www.example.com). OpenERP Web currently can't
224
be deployed under a subdirectory, e.g. http://www.example.com/openerp.
224
be deployed under a subdirectory, e.g. http://www.example.com/openobject.
226
226
To overcome with the issue you can go with `subdomain`, like:
228
https://openerp.example.com
228
https://openobject.example.com
230
See: http://openerp.org/wiki/index.php/InstallationManual/WebClientHTTPS
230
See: http://openobject.org/wiki/index.php/InstallationManual/WebClientHTTPS
232
232
-------------------------------------------------------------------------------
233
233
6. WEB BROWSER COMPATIBILITIES