blob: 0cf6616c9c5eda69b721c51fc51b391f806ef85a [file] [log] [blame]
Title: 2.2.1 - Debian Instance Layout
NavPrev: 2.2-instance-layout.html
NavPrevText: 2.2 - Instance Layout
NavUp: 2.2-instance-layout.html
NavUpText: 2.2 Instance Layout
NavNext: 2.2.2-rpm-instance-layout.html
NavNextText: 2.2.2 - RPM Instance Layout
Notice: Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
.
http://www.apache.org/licenses/LICENSE-2.0
.
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
# 2.2.1 - ![debian](images/debian.png) Debian Instance Layout
When you run the installer ( <em>sudo dpkg -i apacheds-&lt;version&gt;-&lt;arch&gt;.deb</em> ) on your debian system, it will install the server on your disk, using this layout :
/
|
+-- etc/
| |
| +-- init.d/
| |
| +-- apacheds-<version>-<instance> The daemon used to start the server
+-- opt/
| |
| +-- apacheds-<version>
| |
| +-- conf/
| | |
| | +-- wrapper.conf The wrapper default configuration
| |
| +-- bin/
| | |
| | +-- apacheds* The script that starts the server
| | |
| | +-- wrapper* The binary that starts the server
| |
| +-- lib
| | |
| | +-- wrapper-3.2.3.jar
| | |
| | +-- libwrapper.so
| | |
| | +-- apacheds-wrapper-2.0.0-M20-SNAPSHOT.jar
| | |
| | +-- apacheds-service-2.0.0-M20-SNAPSHOT.jar
| |
| +-- NOTICE
| |
| +-- LICENSE
|
+-- var/
|
+--lib/
|
+-- apacheds-<version>/
|
+-- <instance>/
|
+-- run/
| |
| +-- apacheds-default.pid The PID of the running process
|
+-- partitions/ This is were your data will be stored
| |
| +-- schema/
| |
| +-- system/
| |
| +-- example/
|
+-- log/ This is were the logs are stored
| |
| +-- apacheds.log
| |
| +-- wrapper.log
|
+-- cache/ This is where the various caches are stored
| |
| +-- changePwdReplayCache.data
| |
| +-- ou=system.data
| |
| +-- groupCache.data
| |
| +-- kdcReplayCache.data
|
+-- conf/
| |
| +-- wrapper-instance.conf The specific instance wrapper configuration
| |
| +-- log4j.properties The log configuration file
| |
| +-- config.ldif The server configuration. Don't manipulate this file with a text editor !
|
+-- syncrepl-data/
## Defining an instance
The default installation comes with a default instance (aka <em>'default'</em>). It's possible to define more instances, it's just enough to copy the directory <em>/var/lib/apacheds-&lt;version&gt;/&lt;instances&gt;/default</em> and give it the name of the new instance. Then, be sure to remove everything under the <em>run/</em>, <em>partitions/</em>, <em>log/</em>, <em>syncrepl-data</em> and <em>cache/</em> directories to create a blank new instance. Here, we have created a blank <em>test</em> instance :
/
|
+-- var/
|
+--lib/
|
+-- apacheds-<version>/
|
+-- test/
|
+-- run/
|
+-- partitions/
|
+-- log/
|
+-- cache/
|
+-- conf/
|
+-- wrapper-instance.conf
|
+-- log4j.properties
|
+-- config.ldif
The next step is to be sure that the config.ldif file is modified to not conflict with any other instance of the server : it's just a mater to change the port used by the server.
When the newly created instance will be created, the partitions will be created.
## Starting the server
As we can have more than one instance, we have more than one instance in <em>/var/lib/apacheds&lt;version&gt;/&lt;instances&gt;</em> that can be installed. Each one of these instance can be started using the <em>/etc/init.d/apacheds</em> daemon, passing the instance as a parameter :
$ sudo /etc/init.d/apacheds-<version> start [<instance>]
The default instance name is 'default'.
All the data for a given instance are stored into this <em>/var/lib/apacheds-&lt;version&gt;/instances/&lt;instance-name&gt;</em> directory.
## Stopping the server
Stopping the server is done using the same command, with a different parameter :
$ sudo /etc/init.d/apacheds-<version> stop [<instance>]
Again, you must provide the instance name if it's not the default one
## Repairing the indexes
Sometime, the database get corrupted. Hopefully, this is not frequent, but when it happens, it left you in a position where there is nothing you can do but re-injecting a backup.
That is more than annoying, and the latest version (2.0.0-M23) as an added feature that allows you to repair the indexes (this is a best effort, it might not work in all cases). Here is the step to follow in order to run the tool :
$ sudo /etc/init.d/apacheds-<version> repair /var/lib/apacheds-<version>/<instance>
All the indexes will be recreated, based on the content of the master table (which contains all the entries). You can also remove all the database files but the master.db and master.lg files from each user partitions in /var/lib/apacheds-<version>/<instance>/partitions, before running the command.
The server should restart with a working database (it might take a bit of time, but not that much : rebuilding indexes is orders of magnitude faster than injcting entries in the server).
## Logs
You can check what's going on in the <em>apacheds-&lt;version&gt;instances/&lt;instance-name&gt;/log/apacheds.log</em> file, which is created using the configuration set in <em>apacheds-&lt;version&gt;instances/&lt;instance-name&gt;/conf/log4j.properties</em>.
Typically, when you start the server, you will get such log :
$ more apacheds.log
[10:53:05] WARN [org.apache.directory.server.core.DefaultDirectoryService] - You didn't change the admin password of
directory service instance 'default'. Please update the admin password as soon as possible to prevent a possible
security breach.
and from the <em>apacheds-&lt;version&gt;/instances/&lt;instance-name&gt;/log/apacheds.out</em> file, which contains everything the server writes on the console, you will read :
$ more apacheds.out
[10:53:05] WARN [org.apache.directory.server.core.DefaultDirectoryService] - You didn't change the admin password of
directory service instance 'default'. Please update the admin password as soon as possible to prevent a possible
security breach.
_ _ ____ ____
/ \ _ __ ___ ___| |__ ___| _ \/ ___|
/ _ \ | '_ \ / _` |/ __| '_ \ / _ \ | | \___ \
/ ___ \| |_) | (_| | (__| | | | __/ |_| |___) |
/_/ \_\ .__/ \__,_|\___|_| |_|\___|____/|____/
|_|
### Log configuration
You can configure the log level and content by changing the content of the <em>/var/lib/apacheds-&lt;version&gt;/&lt;instance&gt;/&lt;conf&gt;/log4j.properties</em> file.
The default configuration is given below :
log4j.rootCategory=WARN, R, stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.R=org.apache.log4j.RollingFileAppender
log4j.appender.R.File=${apacheds.log.dir}/apacheds.log
log4j.appender.R.MaxFileSize=1024KB
# Keep some backup files
log4j.appender.R.MaxBackupIndex=5
log4j.appender.R.layout=org.apache.log4j.PatternLayout
log4j.appender.R.layout.ConversionPattern=[%d{HH:mm:ss}] %p [%c] - %m%n
log4j.appender.stdout.layout.ConversionPattern=[%d{HH:mm:ss}] %p [%c] - %m%n
# with these we'll not get innundated when switching to DEBUG
log4j.logger.jdbm.recman.BaseRecordManager=FATAL
log4j.logger.org.apache.directory.server.OPERATION_LOG=FATAL
log4j.logger.org.apache.directory.server.OPERATION_TIME=FATAL
log4j.logger.org.apache.directory.api.CODEC_LOG=FATAL
log4j.logger.org.apache.directory.server.ACI_LOG=FATAL
# Replication logs
log4j.logger.org.apache.directory.server.PROVIDER_LOG=FATAL
log4j.logger.org.apache.directory.server.CONSUMER_LOG=FATAL
# Search log
log4j.logger.org.apache.directory.CURSOR_LOG=FATAL
# Other logs
log4j.logger.org.apache.directory.api=FATAL
log4j.logger.org.apache.directory.server=FATAL
log4j.logger.net.sf.ehcache=FATAL
log4j.logger.org.apache.mina=FATAL
### JVM setting
Were you to change the memory you want to use for a given instance, you will have to modify the <em>/var/lib/apacheds-&lt;version&gt;/&lt;instances&gt;/&lt;conf&gt;/wrapper-instance.conf</em> file. Here are the parameter you can configure in this file :
##
## In this file you can override parameters specified in the default
## Apache Directory Server config file which is usually at
## /opt/apacheds-2.0.0-M20-SNAPSHOT/conf/wrapper.conf
##
## See also http://wrapper.tanukisoftware.org/doc/english/properties.html
## For a list of properties that can be set.
##
## Override the JRE used
# wrapper.java.command=<path-to-java-executable>
## Override the JVM memory settings
## Initial Java Heap Size (in MB)
# wrapper.java.initmemory=1024
## Maximum Java Heap Size (in MB)
# wrapper.java.maxmemory=2048
You mainly want to change the memory used by the JVM.