odoo/doc
P. Christeas 68c880cc4f Conf: don't define the db_name, fix crash on new startup.
bzr revid: p_christ@hol.gr-20081221104454-awuvhajofafadcr4
2008-12-21 12:44:54 +02:00
..
migrate bugfix_304008 2008-12-01 16:13:51 +01:00
tests passing in GPL-3 2008-11-03 19:27:16 +01:00
COPYING passing in GPL-3 2008-11-03 19:27:16 +01:00
Changelog Update changelog 2007-12-24 14:45:31 +00:00
INSTALL Rename Tiny ERP to OpenERP 2008-09-10 10:46:40 +02:00
License.rtf Upgrade the license 2008-10-31 07:51:17 -04:00
README.urpmi Rename TinyERP to OpenERP in scripts. 2008-09-23 19:01:56 +03:00
openerp-server.conf Conf: don't define the db_name, fix crash on new startup. 2008-12-21 12:44:54 +02:00
openerp-server.init Fix hardcoded paths in initscript 2008-09-26 10:49:33 +03:00
openerp-server.logrotate Rename TinyERP to OpenERP in scripts. 2008-09-23 19:01:56 +03:00

README.urpmi

Installation Steps
------------------

1. Check that all the required dependencies are installed.

2. Create a postgresql database.

The default database name is "terp". If you want to use another name, you
will need to provide it when launching the server (by using the commandline
option --database).

To create a postgresql database named "terp" using the following command:
    $ createdb --encoding=UNICODE terp

If it is the first time you use postgresql you might need to create a new user
to the postgres system using the following commands (where myusername is your
unix user name):

    $ su -
    # su - postgres
    $ createuser tinyerp
    Shall the new user be allowed to create databases? (y/n) y
    Shall the new user be allowed to create more new users? (y/n) y
    CREATE USER
    $ logout
    # logout

3. Launch service daemon by "service openerp-server start".

The first time it is run, the server will initialise the database with all the default values.

4. Connect to the server using the GUI client.

There are two accounts by default:
    * login: admin, password:admin
    * login: demo, password:demo