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
b950596f
Commit
b950596f
authored
Feb 23, 2007
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Solaris FAQ.
Zdenek Kotala
parent
7031dd68
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
10 deletions
+22
-10
doc/FAQ_Solaris
doc/FAQ_Solaris
+22
-10
No files found.
doc/FAQ_Solaris
View file @
b950596f
...
@@ -3,7 +3,7 @@ Frequently Asked Questions (FAQ) for PostgreSQL
...
@@ -3,7 +3,7 @@ Frequently Asked Questions (FAQ) for PostgreSQL
Sun Solaris specific
Sun Solaris specific
To be read in conjunction with the installation instructions.
To be read in conjunction with the installation instructions.
============================================================
============================================================
Last updated: $Date: 200
6/12/02 09:29:51
$
Last updated: $Date: 200
7/02/23 18:38:19
$
Contents:
Contents:
...
@@ -16,6 +16,7 @@ Contents:
...
@@ -16,6 +16,7 @@ Contents:
6) Where I can download prepared Solaris packages?
6) Where I can download prepared Solaris packages?
7) How can I tune PostgreSQL and Solaris for performance?
7) How can I tune PostgreSQL and Solaris for performance?
8) Can I use DTrace for tracing PostgreSQL?
8) Can I use DTrace for tracing PostgreSQL?
9) Can I compile PostgreSQL with Kerberos v5 support?
1) What tools do I need to build and install PostgreSQL on Solaris?
1) What tools do I need to build and install PostgreSQL on Solaris?
...
@@ -72,14 +73,12 @@ problem. Solaris 9 and above has a newer version of OpenSSL.
...
@@ -72,14 +73,12 @@ problem. Solaris 9 and above has a newer version of OpenSSL.
This is probably a case of the run-time linker being unable to find
This is probably a case of the run-time linker being unable to find
some library, probably libz, libreadline or some other non-standard
some library, probably libz, libreadline or some other non-standard
library such as libssl. To point it to the right location, set the
library such as libssl. To point it to the right location, set the
LD
_LIBRARY_PATH
environment variable, e.g.,
LD
FLAGS
environment variable, e.g.,
LD
_LIBRARY_PATH=/usr/sfw/lib:/opt/sfw/lib:/usr/local/lib
LD
FLAGS="-R /usr/sfw/lib:/opt/sfw/lib:/usr/local/lib"
export LD
_LIBRARY_PATH
export LD
FLAGS
and restart configure. You will also have to keep this setting whenever
and restart configure. See the ld(1) man page for more
you run any of the installed PostgreSQL programs. Alternatively, set
the environment variable LD_RUN_PATH. See the ld(1) man page for more
information.
information.
...
@@ -145,6 +144,10 @@ recommendations are also useful on other hardware with Solaris.
...
@@ -145,6 +144,10 @@ recommendations are also useful on other hardware with Solaris.
Yes, see the chapter "Monitoring Database Activity" in the documentation
Yes, see the chapter "Monitoring Database Activity" in the documentation
for further information.
for further information.
You can also find more information here:
http://blogs.sun.com/robertlor/entry/user_level_dtrace_probes_in
If you see the linking of the postgres executable abort with an error
If you see the linking of the postgres executable abort with an error
message like
message like
...
@@ -157,8 +160,17 @@ message like
...
@@ -157,8 +160,17 @@ message like
gmake: *** [postgres] Error 1
gmake: *** [postgres] Error 1
your DTrace installation is too old to handle probes in static
your DTrace installation is too old to handle probes in static
functions. You need Solaris 10u3 or newer.
functions. You need Solaris 10u4 or newer. Workaround is remove static
keyword from AbortTransaction and CommitTransaction functions declaration in
src/backend/access/transam/xact.c.
You can also find more information here:
See http://sunsolve.sun.com/search/document.do?assetkey=1-1-2139224-1
(registration required).
9) Can I compile PostgreSQL with Kerberos v5 support?
Kerberos is integrated in OpenSolaris and will be integrated in Solaris 10u4. GSS security
mechanism contains internal Kerberos v5 library implementation which provide all necessary
krb5 function. However, usage this library is only on own risk. It is private library
and interface may change without notice.
http://blogs.sun.com/robertlor/entry/user_level_dtrace_probes_in
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