postmaster.1
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:10k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. ." This is -*-nroff-*-
  2. ." XXX standard disclaimer belongs here....
  3. ." $Header: /usr/local/cvsroot/pgsql/src/man/Attic/postmaster.1,v 1.17 1999/05/22 17:47:48 tgl Exp $
  4. .TH POSTMASTER UNIX 05/19/99 PostgreSQL PostgreSQL
  5. .SH "NAME"
  6. postmaster - run the Postgres postmaster
  7. .SH "SYNOPSIS"
  8. .BR "postmaster"
  9. [c
  10. .BR "-B"
  11. n_buffers]
  12. [c
  13. .BR "-D"
  14. data_dir]
  15. [c
  16. .BR "-N"
  17. n_backends]
  18. .br
  19. .in +5n
  20. [c
  21. .BR "-S" c
  22. ]
  23. [c
  24. .BR "-a"
  25. system]
  26. [c
  27. .BR "-b"
  28. backend_pathname]
  29. [c
  30. .BR "-d"
  31. [debug_level]]
  32. [c
  33. .BR "-i" c
  34. ]
  35. [c
  36. .BR "-n" c
  37. ]
  38. [c
  39. .BR "-o"
  40. backend_options]
  41. [c
  42. .BR "-p"
  43. port]
  44. [c
  45. .BR "-s" c
  46. ]
  47. .in -5n
  48. .SH "DESCRIPTION"
  49. The
  50. .IR "postmaster"
  51. manages the communication between frontend and backend processes, as
  52. well as allocating the shared buffer pool and SysV semaphores
  53. (on machines without a test-and-set instruction).  The 
  54. .IR postmaster
  55. does not itself interact with the user and should be started as a
  56. background process.
  57. .PP
  58. .BR "Only one postmaster should be running at a time in a given
  59. Postgres installation."
  60. Here, an installation means a database directory and postmaster port number.
  61. You can run more than one postmaster on a machine only if each one has a
  62. separate directory and port number.
  63. .PP
  64. The 
  65. .IR "postmaster"
  66. understands the following command-line options:
  67. .TP 5n
  68. .BR "-B" " n_buffers"
  69. .IR "n_buffers"
  70. is the number of shared-memory buffers for the 
  71. .IR "postmaster"
  72. to allocate and manage for the backend server processes that it
  73. starts.  This value defaults to 64 buffers, where each buffer is 8k bytes
  74. (or whatever BLCKSZ is set to in config.h).
  75. .TP
  76. .BR "-D" " data_dir"
  77. Specifies the directory to use as the root of the tree of database
  78. directories.  If -D is not given, the default data directory name is
  79. the value of the environment variable 
  80. .SM PGDATA.
  81. If 
  82. .SM PGDATA
  83. is not set, then the directory used is
  84. .SM $POSTGRESHOMEc
  85. /data.  If neither environment variable is set and this command-line
  86. option is not specified, the default directory that was
  87. set at compile-time is used.
  88. .TP
  89. .BR "-N" " n_backends"
  90. .IR "n_backends"
  91. is the maximum number of backend server processes that this postmaster
  92. is allowed to start.  In the stock configuration, this value defaults
  93. to 32, and can be set as high as 1024 if your system will support that
  94. many processes. Both the default and upper limit values can be altered
  95. when building Postgres (see src/include/config.h).
  96. .TP
  97. .BR "-S"
  98. Specifies that the
  99. .IR "postmaster"
  100. process should start up in silent mode.  That is, it will disassociate
  101. from the user's (controlling) tty and start its own process group.
  102. This should not be used in combination with debugging options because
  103. any messages printed to standard output and standard error are 
  104. discarded.
  105. .TP
  106. .BR "-a" " system"
  107. Specifies whether or not to use the authentication system 
  108. .IR "system"
  109. for frontend applications to use in connecting to the 
  110. .IR postmaster
  111. process.  Specify
  112. .IR "system"
  113. to enable a system, or
  114. .BI "no" "system"
  115. to disable a system.  For example, to permit users to use
  116. .IR Kerberos
  117. authentication, use 
  118. .BR "-a kerberos" ;
  119. to deny any unauthenticated
  120. connections, use
  121. .BR "-a nounauth .
  122. This option no longer has any effect!  The pg_hba.conf configuration
  123. file now controls authentication.
  124. .TP
  125. .BR "-b" " backend_pathname"
  126. .IR "backend_pathname"
  127. is the full pathname of the Postgres backend server executable file that
  128. the
  129. .IR "postmaster"
  130. will invoke when it receives a connection from a frontend application.
  131. If this option is not used, then the 
  132. .IR postmaster
  133. tries to find this executable file in the directory in which its own
  134. executable is located (this is done by looking at the pathname under
  135. which the
  136. .IR "postmaster"
  137. was invoked.  If no pathname was specified, then the
  138. .SM PATH
  139. environment variable is searched for an executable named
  140. *(lqpostgres*(rq).
  141. This option is also obsolete, since the postmaster and backend are now
  142. a single executable --- the postmaster forks a backend but does not do
  143. an exec.
  144. .TP
  145. .BR "-d" " [debug_level]"
  146. The optional argument
  147. .IR debug_level
  148. determines the amount of debugging output the backend servers will
  149. produce.
  150. If
  151. .I debug_level
  152. is one, the postmaster will trace all connection traffic,
  153. and nothing else.
  154. For levels two and higher,
  155. debugging is turned on in the backend process and the postmaster
  156. displays more information,
  157. including the backend environment and process traffic.
  158. Note that if no file is specified for backend servers to
  159. send their debugging output then this output will appear on the
  160. controlling tty of their parent 
  161. .IR postmaster .
  162. .TP
  163. .BR "-i"
  164. This enables TCP/IP or Internet domain socket communication.
  165. Without this option, only local Unix domain socket communication is
  166. possible.
  167. .TP
  168. .BR "-n" ", " "-s"
  169. The
  170. .IR "-s" " and " "-n"
  171. options control the behavior of the
  172. .IR "postmaster"
  173. when a backend dies abnormally.  fBNeither option is intended for use in
  174. ordinary operationfP.
  175. .IP
  176. The ordinary strategy for this situation is to notify all other
  177. backends that they must terminate and then reinitialize the shared
  178. memory and semaphores.  This is because an errant backend could have
  179. corrupted some shared state before terminating.
  180. .IP
  181. If the
  182. .IR "-s"
  183. option is supplied, then the
  184. .IR "postmaster"
  185. will stop all other backend processes by sending the signal
  186. .SM SIGSTOP,
  187. but will not cause them to terminate.  This permits system programmers
  188. to collect core dumps from all backend processes by hand.
  189. .IP
  190. If the
  191. .IR "-n"
  192. option is supplied, then the
  193. .IR "postmaster"
  194. does not reinitialize shared data structures.  A knowledgable system
  195. programmer can then use the
  196. .IR shmemdoc
  197. program to examine shared memory and semaphore state.
  198. .TP
  199. .BR "-o" " backend_options"
  200. The 
  201. .IR postgres(1)
  202. options specified in
  203. .IR "backend_options"
  204. are passed to all backend server processes started by this
  205. .IR postmaster .
  206. If the option string contains any spaces, the entire string must be
  207. quoted.
  208. .TP
  209. .BR "-p" " port"
  210. Specifies the TCP/IP port or local Unix domain socket file extension
  211. on which the
  212. .IR postmaster
  213. is to listen for connections from frontend applications.  Defaults to
  214. the value of the 
  215. .SM PGPORT 
  216. environment variable, or if
  217. .SM PGPORT 
  218. is not set, then the default value established when Postgres was
  219. compiled (normally 5432).  If you specify a port other than the
  220. default port then all frontend application users must specify the same
  221. port (using command-line options or
  222. .SM PGPORTc
  223. ) when starting any libpq application, including psql.
  224. .SH "WARNINGS"
  225. If at all possible,
  226. .BR "do not"
  227. use
  228. .SM SIGKILL
  229. when killing the
  230. .IR "postmaster" "."
  231. .SM SIGHUP,
  232. .SM SIGINT,
  233. or
  234. .SM SIGTERM
  235. (the default signal for 
  236. .IR "kill" "(1))"
  237. should be used instead.  Hence, avoid
  238. .nf
  239. kill -KILL
  240. .fi
  241. or its alternative form
  242. .nf
  243. kill -9
  244. .fi
  245. as this will prevent the
  246. .IR postmaster
  247. from freeing the system resources (e.g., shared memory and semaphores)
  248. that it holds before dying.  This prevents you from having to deal with
  249. the problem with
  250. .IR shmat(2)
  251. described below.
  252. .SH "EXAMPLES"
  253. .nf
  254. # start postmaster using default values
  255. nohup postmaster >logfile 2>&1 &
  256. .fi
  257. This command will start up 
  258. .IR "postmaster"
  259. on the default port (5432) and will search 
  260. .SM $PATH
  261. to find an executable file called *(lqpostgres*(rq.  This is the
  262. simplest and most common way to start the
  263. .IR "postmaster" .
  264. .nf
  265. # start with specific port and executable name
  266. nohup postmaster -p 1234 -b /usr/postgres/bin/postgres &
  267. .fi
  268. This command will start up a 
  269. .IR "postmaster"
  270. communicating through the port 1234, and will attempt to use the
  271. backend located at *(lq/usr/postgres/bin/postgres*(rq.  In order to
  272. connect to this
  273. .IR "postmaster"
  274. using psql, you would need to either
  275. specify
  276. .BR "-p 1234"
  277. on the 
  278. .IR "psql"
  279. command-line or set the environment variable
  280. .SM PGPORT
  281. to 1234.
  282. .SH "SEE ALSO"
  283. ipcs(1),
  284. ipcrm(1),
  285. ipcclean(1),
  286. psql(1), 
  287. postgres(1), 
  288. .SH "DIAGNOSTICS"
  289. .TP
  290. .BR "FindBackend: could not find a backend to execute..."
  291. If you see this message, you do not have the 
  292. .IR "postgres"
  293. executable in your path.  Add the directory in which postgres resides to
  294. your path.
  295. .TP
  296. .BR "semget: No space left on device"
  297. If you see this message, you should run the
  298. .IR "ipcclean"
  299. command.  After doing this, try starting the
  300. .IR "postmaster"
  301. again.  If this still doesn't work, you probably need to configure
  302. your kernel for shared memory and semaphores as described in the
  303. installation notes.  If you run multiple 
  304. .IR postmaster s
  305. on a single host, or have a kernel with particularly small shared memory
  306. and/or semaphore limits, you may have to reconfigure your kernel to increase
  307. its shared memory or semaphore parameters.  (You may be able to postpone
  308. reconfiguring your kernel by reducing -B to reduce Postgres' shared memory
  309. consumption, or by reducing -N to reduce Postgres' semaphore consumption.)
  310. .TP
  311. .BR "StreamServerPort: cannot bind to port"
  312. If you see this message, you should be certain that there is no other 
  313. .IR "postmaster"
  314. process already running.  The easiest way to determine this is by
  315. using the command
  316. .nf
  317. ps -ax | grep postmaster
  318. .fi
  319. on BSD-based systems
  320. .nf
  321. ps -e | grep postmast
  322. .fi
  323. (the equivalent syntax is on System V-like or POSIX-compliant systems such as HP-UX).  If you 
  324. are sure that no other
  325. .IR "postmaster"
  326. processes are running and you still get this error, try specifying a
  327. different port using the
  328. .BR "-p"
  329. option.  You may also get this error if you terminate the
  330. .IR "postmaster"
  331. and immediately restart it using the same port; in this case, you must
  332. simply wait a few seconds until the operating system closes the port
  333. before trying again.  Finally, you may get this error if you specify
  334. a port number that your operating system considers to be reserved.
  335. For example, many versions of Unix consider port numbers under 1024 to
  336. be *(lqtrusted*(rq and only permit the Unix superuser to access them.
  337. .TP
  338. .BR "IpcMemoryAttach: shmat() failed: Permission denied"
  339. A likely explanation is that another user attempted to start a
  340. .IR "postmaster"
  341. process on the same port which acquired shared resources and then 
  342. died.  Since Postgres shared memory keys are based on the port number 
  343. assigned to the
  344. .IR "postmaster" ,
  345. such conflicts are likely if there is more than one installation on 
  346. a single host.  If there are no other
  347. .IR "postmaster"
  348. processes currently running (see above), run
  349. .IR "ipcclean"
  350. and try again.  If other 
  351. .IR "postmaster" s
  352. are running, you will have to find the owners of those processes to
  353. coordinate the assignment of port numbers and/or removal of unused
  354. shared memory segments.