Changeset 508 for branches/stable/INSTALL
- Timestamp:
- 11/16/11 16:28:37 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/INSTALL
r507 r508 61 61 b) Edit CustIDCK.pm as needed to validate customer IDs. 62 62 63 4) As a Postgres superuser, create a database user and the database. 64 Create the inital tables using cgi-bin/ipdb.psql. 63 4) As a Postgres superuser, create a database user and the database: 64 65 shell> psql template1 66 pg# create user ipdb with password "ipdbpwd"; 67 pg# create database ipdb owner ipdb; 68 69 Add the PL/pgSQL language to the database. This is not strictly 70 necessary but there are triggers on the poolips and allocations table 71 to automatically update a last-modified column. 72 73 pg# \c ipdb 74 pg# create language plpgsql 75 76 Create the inital tables using cgi-bin/ipdb.psql: 77 78 shell> psql -U ipdb ipdb <cgi-bin/ipdb.psql 65 79 66 80 5) Configure your webserver to call the IPDB scripts at an appropriate
Note:
See TracChangeset
for help on using the changeset viewer.