11How to install PostgreSQL on Windows
22====================================
33
4- $Date: 2003/11/13 03:53:00 $
4+ $Date: 2003/11/28 20:22:18 $
55
6- PostgreSQL requires the appropriate subset of Cygwin DLLs to be
6+ PostgreSQL requires the appropriate subset of Cygwin DLLs to be
77installed in order that it functions under Windows.
88
99This document assumes that you do not have Cygwin already installed
@@ -18,7 +18,7 @@ adjust these instructions accordingly.
18182. Proceed through the Cygwin install wizard. Choose 'Install from
1919 Internet', specify a Local Package Directory and choose a mirror
2020 site that's close to you. Answer the other installer questions
21- appropriately for your configuration.
21+ appropriately for your configuration.
2222
2323 When you come to the point of choosing which packages to install,
2424 expand the 'Database' section and click 'Skip' next to PostgreSQL
@@ -28,15 +28,15 @@ adjust these instructions accordingly.
28283. Once the download and install process is complete, open a Cygwin
2929 shell and do the following for a basic installation:
3030
31- 3a. Start ipc-daemon2 for shared memory support. To do this,
32- enter the command "ipc-daemon2 &". This program
33- needs to be running anytime you start the PostgreSQL server
31+ 3a. Start ipc-daemon2 for shared memory support. To do this,
32+ enter the command "ipc-daemon2 &". This program
33+ needs to be running anytime you start the PostgreSQL server
3434 (postmaster) or initialize a database (initdb).
3535
3636 3b. Use the initdb command to create a new database cluster. An
3737 example command would be:
3838
39- initdb -D /usr/local/pgsql/data -W -E LATIN1
39+ initdb -D /usr/local/pgsql/data -W -E LATIN1
4040
4141 Which will create a cluster in the /usr/local/pgsql/data
4242 directory, will prompt for a superuser password and will
@@ -45,7 +45,7 @@ adjust these instructions accordingly.
4545 3c. Start up the postmaster. Use a command similar to the
4646 following:
4747
48- postmaster -D /usr/local/pgsql/data
48+ postmaster -D /usr/local/pgsql/data
4949
5050 This will start the postmaster, and if successful you will
5151 see some initial log entries, and an entry "LOG: database
@@ -88,7 +88,7 @@ Known issues
8888
89892. "make check" can generate spurious regression test failures due to
9090 overflowing the listen() backlog queue which causes connection
91- refused errors or hangs. You can limit the number of connections
91+ refused errors or hangs. You can limit the number of connections
9292 using the MAX_CONNECTIONS option thus:
9393
9494 make MAX_CONNECTIONS=5 check