Difference between revisions of "ApacheDS"

From Radio Amteur Station OH5BZR - WIKI
Jump to: navigation, search
(apacheDS - LDAP - Kerberos server code)
Line 1: Line 1:
 +
= ApacheDS - LDAP - Kerberos - NFS4 here =
 +
 +
STATUS: UNDER WORK
 +
 +
DATE: 2014-09-16
 +
[[kurrola.dy.fi/mediawiki/index.php/ApacheDS|source]],[[https://help.ubuntu.com/community/ApacheDS%20-%20LDAP%20-%20Kerberos%20-%20NFS4?action=edit&editor=text|copy]]
 +
 +
"There are many alternatives for LDAP. Most of them are hard to manage, configure and erroneus. apacheDS project is not 100% ready yet but offers solution at least get NFS4, Kerberos and LDAP deployed timely manner for small network.";
 +
More at [[http://directory.apache.org/apached|Project pages]] and [[http://directory.apache.org/apacheds/download/download-linux-deb.html|download]] packages. Soem help can be found [[#apache-directory @ irc://irc.freenode.net|IRC support]] .
 +
 +
Kindly use user'manuals at project site. These instruction's are Ubuntu Spesific and give's some contextual knowledge how apacheDS differs from other LDAP solutions.
 +
 +
 +
== Installation 64bit system - current version ==
 +
 +
=== prerequisite ===
 +
 +
To confirm the version of java installed run
 +
 +
java -version
 +
 +
You'll get an output that looks like:
 +
 +
java version "1.7.0_15"
 +
 +
OpenJDK Runtime Environment (IcedTea7 2.3.7) (7u15-2.3.7-0ubuntu1~12.04.1)
 +
 +
OpenJDK 64-Bit Server VM (build 23.7-b01, mixed mode)
 +
 +
This one runs JRE version 7update15
 +
 +
 +
If Java environment is not installed, install it:
 +
<code>
 +
sudo apt-get install openjdk-7-jdk
 +
</code>
 +
 +
 
= ApacheDS - LDAP - Kerberos - NFS4 here =
 
= ApacheDS - LDAP - Kerberos - NFS4 here =
  
Line 48: Line 86:
  
 
Server's can be started via apache Directory Studio, by init script or commandline:
 
Server's can be started via apache Directory Studio, by init script or commandline:
 +
<code>
 +
/opt/apacheds-2.0.0-M17/bin/apacheds <command> <instance name>
 +
</ode>
 +
=== apache Directory studio - The tool to configure and manage servers ===
 +
<code>
 +
cd /mpi3/S4/apacheds
 +
wget http://apache.spinellicreations.com//directory/studio/dist/2.0.0.v20130628/ApacheDirectoryStudio-linux-x86_64-2.0.0.v20130628.tar.gz
 +
extract tar 
 +
</code>
 +
== Get started ==
 +
 +
apacheDS Directory Studio start's
 +
<code>
 +
cd /mpi3/S4/apacheds/ApacheDirectoryStudio-linux-x86_64-2.0.0.v20130628
 +
.ApacheDirectoryStudio
 +
</code>
 +
 +
"apacheDS is structured such way you can manage several servers. Directory studio gives easy way to add, modify, duplicate LDAP directoryes. There is build in mechanisms for replication setup. Whit studio you can import/export *.ldif and *.schema to and from your installations. Look User's Manuals.";
 +
 +
 +
Created server's database is located and can be deployed it just copying created database at
 +
directory /var/lib/apacheds-2.0.0-M17/<instance name>
 +
  
/opt/apacheds-2.0.0-M17/bin/apacheds <command> <instance name>
+
----
 +
CategoryNetworking
  
 
=== apache Directory studio - The tool to configure and manage servers ===
 
=== apache Directory studio - The tool to configure and manage servers ===

Revision as of 11:25, 15 September 2014

ApacheDS - LDAP - Kerberos - NFS4 here

STATUS: UNDER WORK

DATE: 2014-09-16 source,[[1]]

"There are many alternatives for LDAP. Most of them are hard to manage, configure and erroneus. apacheDS project is not 100% ready yet but offers solution at least get NFS4, Kerberos and LDAP deployed timely manner for small network."; More at [pages] and [[2]] packages. Soem help can be found IRC support .

Kindly use user'manuals at project site. These instruction's are Ubuntu Spesific and give's some contextual knowledge how apacheDS differs from other LDAP solutions.


Installation 64bit system - current version

prerequisite

To confirm the version of java installed run

java -version

You'll get an output that looks like:

java version "1.7.0_15"

OpenJDK Runtime Environment (IcedTea7 2.3.7) (7u15-2.3.7-0ubuntu1~12.04.1)

OpenJDK 64-Bit Server VM (build 23.7-b01, mixed mode)

This one runs JRE version 7update15


If Java environment is not installed, install it: sudo apt-get install openjdk-7-jdk


ApacheDS - LDAP - Kerberos - NFS4 here

STATUS: UNDER WORK

DATE: 2014-09-16 source,[[3]]

"There are many alternatives for LDAP. Most of them are hard to manage, configure and erroneus. apacheDS project is not 100% ready yet but offers solution at least get NFS4, Kerberos and LDAP deployed timely manner for small network."; More at [pages] and [[4]] packages. Soem help can be found IRC support .

Kindly use user'manuals at project site. These instruction's are Ubuntu Spesific and give's some contextual knowledge how apacheDS differs from other LDAP solutions.


Installation 64bit system - current version

prerequisite

To confirm the version of java installed run

java -version

You'll get an output that looks like:

java version "1.7.0_15"

OpenJDK Runtime Environment (IcedTea7 2.3.7) (7u15-2.3.7-0ubuntu1~12.04.1)

OpenJDK 64-Bit Server VM (build 23.7-b01, mixed mode)

This one runs JRE version 7update15


If Java environment is not installed, install it: sudo apt-get install openjdk-7-jdk


apacheDS - LDAP - Kerberos server code

mkdir /mpi3/S4/apacheds wget http://www.trieuvan.com/apache//directory/apacheds/dist/2.0.0-M17/apacheds-2.0.0-M17-amd64.deb dbkg -i apacheds-2.0.0-M17-amd64.deb After that Server can be found: /opt/apacheds-2.0.0-M17

LDAP database located:/var/lib/apacheds-2.0.0-M17/ <instance name>

Server's can be started via apache Directory Studio, by init script or commandline: /opt/apacheds-2.0.0-M17/bin/apacheds <command> <instance name> </ode>

apache Directory studio - The tool to configure and manage servers

cd /mpi3/S4/apacheds wget http://apache.spinellicreations.com//directory/studio/dist/2.0.0.v20130628/ApacheDirectoryStudio-linux-x86_64-2.0.0.v20130628.tar.gz extract tar

Get started

apacheDS Directory Studio start's cd /mpi3/S4/apacheds/ApacheDirectoryStudio-linux-x86_64-2.0.0.v20130628 .ApacheDirectoryStudio

"apacheDS is structured such way you can manage several servers. Directory studio gives easy way to add, modify, duplicate LDAP directoryes. There is build in mechanisms for replication setup. Whit studio you can import/export *.ldif and *.schema to and from your installations. Look User's Manuals.";


Created server's database is located and can be deployed it just copying created database at directory /var/lib/apacheds-2.0.0-M17/<instance name>



CategoryNetworking

apache Directory studio - The tool to configure and manage servers

cd /mpi3/S4/apacheds wget http://apache.spinellicreations.com//directory/studio/dist/2.0.0.v20130628/ApacheDirectoryStudio-linux-x86_64-2.0.0.v20130628.tar.gz extract tar

Get started

apacheDS Directory Studio start's cd /mpi3/S4/apacheds/ApacheDirectoryStudio-linux-x86_64-2.0.0.v20130628 .ApacheDirectoryStudio

"apacheDS is structured such way you can manage several servers. Directory studio gives easy way to add, modify, duplicate LDAP directoryes. There is build in mechanisms for replication setup. Whit studio you can import/export *.ldif and *.schema to and from your installations. Look User's Manuals.";


Created server's database is located and can be deployed it just copying created database at directory /var/lib/apacheds-2.0.0-M17/<instance name>



CategoryNetworking