Launchpad automatic translations update.
[odoo/odoo.git] / doc / README.urpmi
1 Installation Steps
2 ------------------
3
4 1. Check that all the required dependencies are installed.
5
6 2. Create a postgresql database.
7
8 The default database name is "terp". If you want to use another name, you
9 will need to provide it when launching the server (by using the commandline
10 option --database).
11
12 To create a postgresql database named "terp" using the following command:
13     $ createdb --encoding=UNICODE terp
14
15 If it is the first time you use postgresql you might need to create a new user
16 to the postgres system using the following commands (where myusername is your
17 unix user name):
18
19     $ su -
20     # su - postgres
21     $ createuser openerp
22     Shall the new user be allowed to create databases? (y/n) y
23     Shall the new user be allowed to create more new users? (y/n) y
24     CREATE USER
25     $ logout
26     # logout
27
28 3. Launch service daemon by "service openerp-server start".
29
30 The first time it is run, the server will initialise the database with all the default values.
31
32 4. Connect to the server using the GUI client.
33
34 There are two accounts by default:
35     * login: admin, password:admin
36     * login: demo, password:demo