blob: 485803a06a4a3bc432c94dfafb6f8c3cb993da6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>pgpoolAdmin Setting</title>
<link href="../screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="header">
<h1><img src="../images/logo.gif" alt="pgpoolAdmin" /></h1>
</div>
<div id="menu">
<ul>
<li><a href="../index_en.html">Introduction</a></li>
<li><a href="install.html">Install</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="status.html">pgpool Status</a></li>
<li><a href="nodeServerStatus.html">Node Status</a></li>
<li><a href="queryCache.html">Query Cache</a></li>
<li><a href="systemDb.html">Partitioning Rule</a></li>
<li><a href="pgconfig.html">pgpool.conf Setting</a></li>
<li><a href="config.html">pgpoolAdmin Setting</a></li>
<li><a href="changePassword.html">Change Password</a></li>
<li><a href="logout.html">Logout</a></li>
<li><a href="errorCode.html">Error Code</a></li>
</ul>
</div>
<div id="content">
<h2>pgpoolAdmin Setting</h2>
<h3>Summary</h3>
The setting of the pgpool administration tool can be displayed and be changed.
<p><img src="images/pgpooladmin.jpg" /></p>
<h3>Feature</h3>
<table>
<tbody>
<tr>
<th><label for="listen_addresses">Language</label>
(string)</th>
<td class="input">The language that wants to be displayed is selected. </td>
</tr>
<tr>
<th><label for="pgconfigPath">pgpool.conf File</label>
(string)</th>
<td>Path to pgpool.conf is specified in the full path. </td></tr>
<tr>
<th><label for="PasswordFile">Password File</label>
(string)</th>
<td>Path to pcp.conf is specified in the full path. </td></tr>
<tr>
<th colspan="2"><label>pgpool Command Option</label>
(string)</th></tr>
<tr><td>Clears query cache(-c)</td>
<td>When starting pgpool, the query cache is cleared.</td>
</tr>
<tr><td>Don't run in daemon mode(-n)</td>
<td>pgpool can be run in non-daemon mode. For display of pgpool log in this pool, it is necessary to turn on this item. </td>
</tr>
<tr><td>Debug mode(-d)</td>
<td>pgpool can be run in debug mode. When the debugging log is necessary, it turns it on.</td>
</tr>
<tr>
<tr><td>Stop mode(-d)</td>
<td>All the processes of pgpool are stopped. The pgpool stop option is displayed, when "pgpool Stop" is pushed. There are stop mode for pgpool as follows.
<ul>
<li>smart</li>
<li>fast</li>
<li>immediate</li>
</ul>
If pgpool is stopped, pgpool status in the status window become "pgpool stop" and start option for pgpool is displayed.</td>
</tr>
<tr><td>pgpool.conf(-f)</td>
<td>When pgpool starts, pgpool.conf must be specified. The path of pgpool.conf is specified in "pgpool.conf File".</td>
</tr>
<tr><td>pcp.conf(-F)</td>
<td>When pgpool starts, pcp.conf must be specified. The path of pcp.conf is specified in "Password File".</td>
</tr>
<tr>
<th><label>pgpool Logfile</label>
(string)</th>
<td>The full-path log file name OR pipe command is specified. To assign a pipe command, make sure it starts with a bar ('|'). If it is left blank and pgpool is started in non-daemon mode, "pgpool.log" file is created in the directory specified by the logdir parameter of pgpool.conf.</td></tr>
<tr>
<th><label for="PcpDir">PCP Directory</label>
(string)</th>
<td>The directory that has installed the PCP command is specified. </td></tr>
<tr>
<th><label for="PcpHostname">PCP Hostname</label>
(string)</th>
<td>The host name that executes the PCP command is specified. It usually becomes "localhost".</td>
</tr>
<tr>
<th><label for="PcpRefreshTime">Refresh Time</label>
(integer)
</td>
<td>The update interval of status is specified every second. When 0 is specified, it doesn't update it automatically. </td></tr>
</tbody>
</table>
<p>Finally, The update button is renewed pushing.</p>
</div>
<div id="footer">
<address>
Version 2.1<br />
Copyright © 2006 - 2008 <a href="http://pgpool.projects.postgresql.org/">pgpool Global Development Group</a>. All rights reserved.
</address></div>
</body>
</html>
|