Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
d96398d1
Commit
d96398d1
authored
Jan 31, 2005
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Restructure debug FAQ entry.
parent
1f7aa643
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
45 deletions
+27
-45
doc/FAQ
doc/FAQ
+13
-21
doc/src/FAQ/FAQ.html
doc/src/FAQ/FAQ.html
+14
-24
No files found.
doc/FAQ
View file @
d96398d1
Frequently Asked Questions (FAQ) for PostgreSQL
Last updated: Mon Jan 31 1
5:40:24
EST 2005
Last updated: Mon Jan 31 1
7:57:02
EST 2005
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
...
...
@@ -383,24 +383,20 @@
3.4) What debugging features are available?
PostgreSQL has several features that report status information that
can be valuable for debugging purposes.
There are many log_* server configuration variables that enable
printing of query and process statistics which can be very useful for
debugging and performance measurements.
First, by running configure with the --enable-cassert option, many
assert()s monitor the progress of the backend and halt the program
when something unexpected occurs.
The following detailed debug instructions are to be used to provide
more detailed information for server developers debugging a problem
Both postmaster and postgres have several debug options available.
First, whenever you start postmaster, make sure you send the standard
output and error to a log file, like:
cd /usr/local/pgsql
./bin/postmaster >server.log 2>&1 &
This will put a server.log file in the top-level PostgreSQL directory.
This file contains useful information about problems or errors
encountered by the server. Postmaster has a -d option that allows even
more detailed information to be reported. The -d option takes a number
that specifies the debug level. Be warned that high debug level values
It is also possible to debug the server if it isn't operating
properly. First, by running configure with the --enable-cassert
option, many assert()s monitor the progress of the backend and halt
the program when something unexpected occurs.
The postmaster has a -d option that allows even more detailed
information to be reported. The -d option takes a number that
specifies the debug level. Be warned that high debug level values
generate large log files.
If postmaster is not running, you can actually run the postgres
...
...
@@ -421,10 +417,6 @@
process with the debugger, set any breakpoints, and continue through
the startup sequence.
There are several log_* server configuration variables that enable
printing of process statistics which can be very useful for debugging
and performance measurements.
You can also compile with profiling to see what functions are taking
execution time. The backend profile files will be deposited in the
pgsql/data/base/dbname directory. The client profile file will be put
...
...
doc/src/FAQ/FAQ.html
View file @
d96398d1
...
...
@@ -10,7 +10,7 @@
alink=
"#0000ff"
>
<H1>
Frequently Asked Questions (FAQ) for PostgreSQL
</H1>
<P>
Last updated: Mon Jan 31 1
5:40:24
EST 2005
</P>
<P>
Last updated: Mon Jan 31 1
7:57:02
EST 2005
</P>
<P>
Current maintainer: Bruce Momjian (
<A
href=
"mailto:pgman@candle.pha.pa.us"
>
pgman@candle.pha.pa.us
</A>
)
...
...
@@ -519,29 +519,23 @@
<H4><A
name=
"3.4"
>
3.4
</A>
) What debugging features are
available?
</H4>
<P>
PostgreSQL has several features that report status information
that can be valuable for debugging purposes.
</P>
<P>
There are many
<CODE>
log_*
</CODE>
server configuration variables
that enable printing of query and process statistics which can be
very useful for debugging and performance measurements.
</P>
<P>
First, by running
<I>
configure
</I>
with the --enable-cassert
<P><B>
The following detailed debug instructions are to be used to
provide more detailed information for server developers debugging a
problem
<B></P>
<P>
It is also possible to debug the server if it isn't operating
properly. First, by running
<I>
configure
</I>
with the --enable-cassert
option, many
<I>
assert()
</I>
s monitor the progress of the backend
and halt the program when something unexpected occurs.
</P>
<P>
Both
<I>
postmaster
</I>
and
<I>
postgres
</I>
have several debug
options available. First, whenever you start
<I>
postmaster
</I>
,
make sure you send the standard output and error to a log file,
like:
</P>
<PRE>
cd /usr/local/pgsql
./bin/postmaster
>
server.log 2
>&
1
&
</PRE>
<P>
This will put a server.log file in the top-level PostgreSQL
directory. This file contains useful information about problems or
errors encountered by the server.
<I>
Postmaster
</I>
has a
<I>
-d
</I>
option that allows even more detailed information to be reported.
The
<I>
-d
</I>
option takes a number that specifies the debug level.
Be warned that high debug level values generate large log
files.
</P>
The
<I>
postmaster
</I>
has a
<I>
-d
</I>
option that allows even more
detailed information to be reported. The
<I>
-d
</I>
option takes a
number that specifies the debug level. Be warned that high debug
level values generate large log files.
</P>
<P>
If
<I>
postmaster
</I>
is not running, you can actually run the
<I>
postgres
</I>
backend from the command line, and type your
...
...
@@ -565,10 +559,6 @@
the debugger, set any breakpoints, and continue through the startup
sequence.
</P>
<P>
There are several
<CODE>
log_*
</CODE>
server configuration variables
that enable printing of process statistics which can be very useful
for debugging and performance measurements.
</P>
<P>
You can also compile with profiling to see what functions are
taking execution time. The backend profile files will be deposited
in the
<I>
pgsql/data/base/dbname
</I>
directory. The client profile
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment