@@ -74,7 +74,7 @@ m4_divert[]m4_dnl
74
74
75
75
PGSETUP_ROOT_COMMAND([PGSETUP_SERVICE_START(@NAME_SERVICE@)])
76
76
77
- This command will start a postmaster that will listen on localhost and Unix
77
+ This command will start a postgres that will listen on localhost and Unix
78
78
socket 5432 only. Edit @PGDATADIR@/postgresql.conf and pg_hba.conf if you
79
79
want to allow remote access -- see the section on Grand Unified
80
80
Configuration.
@@ -83,7 +83,7 @@ m4_divert[]m4_dnl
83
83
84
84
PGSETUP_ROOT_COMMAND([PGSETUP_SERVICE_ENABLE(@NAME_SERVICE@)])
85
85
86
- so that the postmaster is automatically started during future reboots.
86
+ so that the postgres is automatically started during future reboots.
87
87
88
88
</para >
89
89
@@ -122,7 +122,7 @@ m4_divert[]m4_dnl
122
122
(for example, from 8.3.x to 9.0.x), you will need to follow the
123
123
"traditional" dump and reload process to bring your data into the new
124
124
version. That is: *before* upgrading, run pg_dumpall to extract all your
125
- data into a SQL file. Shut down the old postmaster , upgrade to the new
125
+ data into a SQL file. Shut down the old postgres , upgrade to the new
126
126
version RPMs, perform initdb, and run the dump file through psql to restore
127
127
your data.
128
128
</para >
@@ -138,7 +138,7 @@ m4_divert[]m4_dnl
138
138
<orderedlist >
139
139
<listitem >
140
140
<para >
141
- shut down the old postmaster running against old data
141
+ shut down the old postgres running against old data
142
142
</para >
143
143
</listitem >
144
144
<listitem >
@@ -332,13 +332,13 @@ m4_ifelse([@WANT_SYSVINIT@], [1], m4_dnl
332
332
[
333
333
<para >
334
334
The @NAME_PACKAGE@-server RPM contains an "initscript" that is used to start
335
- the postmaster . The current version of this script has logic to be able to
336
- start multiple postmasters , with different data areas, listening on
335
+ the postgres . The current version of this script has logic to be able to
336
+ start multiple postgress , with different data areas, listening on
337
337
different ports, etc. To use this functionality requires root access.
338
338
</para >
339
339
340
340
<para >
341
- As an example, let us create a secondary postmaster called, creatively
341
+ As an example, let us create a secondary postgres called, creatively
342
342
enough, 'secondary'. Here are the steps:
343
343
</para >
344
344
@@ -378,7 +378,7 @@ m4_ifelse([@WANT_SYSVINIT@], [1], m4_dnl
378
378
</listitem >
379
379
<listitem >
380
380
<para >
381
- Start the postmaster with 'service secondary start'.
381
+ Start the postgres with 'service secondary start'.
382
382
</para >
383
383
</listitem >
384
384
</orderedlist >
@@ -501,13 +501,13 @@ m4_ifelse([@WANT_SYSVINIT@], [1], m4_dnl
501
501
<para >
502
502
Fedora / Red Hat / CentOS use the systemd package to manage server startup.
503
503
A systemd unit file for PostgreSQL is provided in the server package, as
504
- @systemdunitsdir@/@
[email protected] . To start the
postmaster manually,
504
+ @systemdunitsdir@/@
[email protected] . To start the
postgres manually,
505
505
as root run
506
506
PGSETUP_ROOT_COMMAND(PGSETUP_SERVICE_START(@NAME_SERVICE@))
507
- To shut the postmaster down,
507
+ To shut the postgres down,
508
508
PGSETUP_ROOT_COMMAND(PGSETUP_SERVICE_STOP(@NAME_SERVICE@))
509
- These two commands only change the postmaster 's current status. If you want
510
- the postmaster to be started automatically during future system startups,
509
+ These two commands only change the postgres 's current status. If you want
510
+ the postgres to be started automatically during future system startups,
511
511
run
512
512
PGSETUP_ROOT_COMMAND(PGSETUP_SERVICE_ENABLE(@NAME_SERVICE@))
513
513
To undo that again,
@@ -531,15 +531,15 @@ m4_ifelse([@WANT_SYSVINIT@], [1], m4_dnl
531
531
nonlocal TCP/IP socket connections -- in order to allow these, you will need
532
532
to edit the postgresql.conf file. The line in question contains the string
533
533
'listen_addresses' -- you need to both uncomment the line and set the value
534
- to '*' to get the postmaster to accept nonlocal connections. You'll also
534
+ to '*' to get the postgres to accept nonlocal connections. You'll also
535
535
need to adjust pg_hba.conf appropriately.
536
536
</para >
537
537
</sect1 >
538
538
539
539
<sect1 >
540
540
<title >LOGGING SET UP</title >
541
541
<para >
542
- By default, the postmaster 's stderr log is directed into files placed in a
542
+ By default, the postgres 's stderr log is directed into files placed in a
543
543
pg_log subdirectory of the data directory (ie, @PGDATADIR@/pg_log).
544
544
The out-of-the-box configuration rotates among seven files, one for each
545
545
day of the week. You can adjust this by changing postgresql.conf settings.
0 commit comments