Show
Ignore:
Timestamp:
03/03/10 09:27:59 (2 years ago)
Author:
cmoullet
Message:

Adapt to fossgis env

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • sandbox/camptocamp/mapfish_workshop_fossgis2010/printing_src/_build/html/_sources/creating_webservice.txt

    r3382 r3394  
    2727 
    2828First, create a PostGIS-enabled database and name it ``mapfish_workshop``. For 
    29 that you can launch an ``SQL Shell`` and enter:: 
     29that you can launch an ``SQL Shell`` (psql -U postgres) and enter:: 
    3030 
    31     CREATE DATABASE mapfish_workshop TEMPLATE=template_postgis; 
     31    CREATE DATABASE mapfish_workshop TEMPLATE=postgis_template; 
    3232 
    3333Then, open the explorer, go into the ``/home/live/mapfish/mapfish_workshop_fossgis2010/data`` 
     
    5454by this one:: 
    5555 
    56     sqlalchemy.url = postgres://postgres:postgres@localhost:5432/mapfish_workshop 
     56    sqlalchemy.url = postgres://postgres:postgres@localhost:5433/mapfish_workshop 
    5757 
    5858The connection string specifies that the ``postgres`` driver must be used, the 
    59 database system listens on ``localhost`` and on ``port`` 5432, and the name of 
    60 the database is ``mapfish_workshop``. 
     59database system listens on ``localhost`` and on ``port`` 5433, and the name of 
     60the database is ``mapfish_workshop``. (if it's not working, test also with port 5432, which is the normal port) 
    6161 
    6262Creating web service