PostgreSQL Server Installation and Configuration
PostgreSQL Server Installation and Configuration
WORST EXPIRIANCE EVER - Could not create database. - BE AWARE OF THIS.... 10H 3 TIMES SYSTEM
RESINATALATION
You can download the windows installer from the PostgreSQL download page
Depending on your need, choose either the One Click Installer or the pgInstaller and click on the executable
you’ve just downloaded.
When the installations of the required software are done, you have to create a PostgreSQL user. Open ERP will
use this user to connect to PostgreSQL.
Add a user¶
Start a windows console (run the cmd command in Start menu -> Run).
Change directory to the Postgresql bin directory (eg. c:\Program Files\PosgtreSQL\8.3\bin) or add this
directory to your PATH environment variable.
The default superuser for PostgreSQL is called postgres. His password was chosen during the PostgreSQL
installation.
Option explanations:
WITH OWNER = openuser ENCODING = 'UTF8'; COMMENT ON DATABASE openerpdemo IS 'OpenERP Demo
DB';
You can now start the Open ERP Server. You will probably need to modify the Open ERP configuration file to
your need.
If you want to delete it, as others has pointed out already, just run:
For an installation which need full UTF8 character support consider to use postgres >= 8.2.x. Prior to this Open
ERP search will eventually not return the expected results for case insensitive searches, which are used for
searching partners, products etc.
Example: