Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jaak Ristioja
OpenLDAP
Commits
41f649ef
Commit
41f649ef
authored
26 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Skip replication test if slurpd doesn't exist.
Update Install document with testing step and other minor changes.
parent
febafbdf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
INSTALL
+35
-13
35 additions, 13 deletions
INSTALL
tests/scripts/test007-replication
+6
-0
6 additions, 0 deletions
tests/scripts/test007-replication
with
41 additions
and
13 deletions
INSTALL
+
35
−
13
View file @
41f649ef
...
...
@@ -64,21 +64,41 @@ these steps:
% make
If all goes well, the system will build as configured. If not,
return to step 4 after reviewing the enable/with options settings.
7. install the binaries and man pages. You may need to be superuser to
return to step 4 after reviewing the configuration settings.
You may want to consult the doc/install/hints file for your
platform.
7. Test the standalone system
This step requires the standalone LDAP server (slapd) with
LDBM support.
% cd tests
% make
If all goes well, the system has been built as configured. If not,
return to step 4 after reviewing your configuration settings.
You may want to consult the doc/install/hints file for your
platform.
8. install the binaries and man pages. You may need to be superuser to
do this (depending on where you are installing things):
% su
# make install
That's it! See the man pages for the individual clients for information
on configuring and using them. Eventually you will probably want to
edit the configuration files used by the various clients (installed in
the LDAP etc directory). The files are:
That's it!
See the man pages for the individual applications for
information on configuring and using them. You may also want
to edit the configuration files used by the various clients.
These configuration files are located in the OpenLDAP
configuration directory (normally /usr/local/etc/openldap).
ldap.conf - LDAP defaults
ldapfilter.conf - search filter configuration
ldapfriendly - mapping of X.500 names to human-friendly names
ldapsearchprefs.conf - search object definitions
ldaptemplates.conf - display template definitions
...
...
@@ -126,10 +146,11 @@ variables for determining compiler/linker options. This can
be used to manual specify features and compilation options.
Supported Environmental Variables
CC C Compiler (cc, ecgs)
CFLAGS C Flags (-ansi)
CPPFLAGS CPP Flags (-I/path/include -Ddef)
LDFLAGS LDFLAGS (-L/path/lib -llib)
CC C compiler (cc, egcc)
CFLAGS C flags (-ansi)
CPPFLAGS cpp flags (-I/path/include -Ddef)
LDFLAGS ld flags (-s)
LIBS libraries (-L/usr/local/lib -llib)
PATH command path /usr/local/bin:/usr/bin:/bin
* Including alternative compilers
...
...
@@ -137,7 +158,7 @@ Supported Environmental Variables
use a specific compiler. For example, to use ecgs
instead of the compiler configure choose, use:
[env] CC=e
cgs
./configure
[env] CC=e
gcc
./configure
You can also use CC use specific flags with the
specified compiler. For example, to require strict
...
...
@@ -187,4 +208,5 @@ HINTS
LDFLAGS="-L/usr/local/lib" \
./configure
End of OpenLDAP INSTALL file.
This diff is collapsed.
Click to expand it.
tests/scripts/test007-replication
+
6
−
0
View file @
41f649ef
...
...
@@ -12,6 +12,12 @@
.
scripts/defines.sh
if
test
!
-x
$SLURPD
;
then
echo
">>>>>
$SLURPD
is not executable or do not exist."
echo
">>>>> Test skipped."
exit
0
fi
echo
"Cleaning up in
$DBDIR
..."
rm
-f
$DBDIR
/[!C]
*
echo
"Cleaning up in
$REPLDIR
..."
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment