blob: b9cc261d754b7af491b37c9ee46af4c3705c86c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
[
{ type: install
message: <<EOM
Odoo 18 ERP was installed
1) The configuration file can be located at:
%%ETCDIR%%/odoo.conf
Look at the following url for more config options
https://www.odoo.com/documentation/18.0/administration/on_premise/deploy.html
2) Odoo use PostgreSQL like database. You must create a database and user
before of use Odoo by first time
3) Add odoo_enable="YES" to /etc/rc.conf. Also, can add the following lines:
odoo_database="postgresql_odoo_database_name" # This is odoodb by default
odoo_datadir="/path/to/odoo/datadir" # This is /var/lib/odoo by default
4) Odoo database host, user and password must be defined at %%ETCDIR%%/odoo.conf
5) The first time that you run odoo you must be do the following:
# service odoo initdb
This command will create PostgreSQL structure used by Odoo
Note: Don't use this command if you are updating from previous version of
odoo because it could destroy your data
6) You can load Odoo ERP from a web browser
http://odoo_ip_host:8069
7) If you want securizing Odoo access from web browser (https), you can use a
web server like proxy. Look at following documentation:
https://www.odoo.com/documentation/18.0/administration/on_premise/deploy.html#https
EOM
}
]
|