need open source KB software for UNIX


 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications need open source KB software for UNIX
# 1  
Old 02-03-2011
need open source KB software for UNIX

Anyone know of a good open source Knowledge Base software for UNIX that can connect to an Oracle back end?
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

TensorFlow: Open Source Software Library for Machine Intelligence

Hi. Is anyone using TensorFlow ? oZikw5k_2FM Please let us know if you are using or planning to use TensorFlow. Thanks. (0 Replies)
Discussion started by: Neo
0 Replies

2. Virtualization and Cloud Computing

Open Source Cloud Software

Hi all, I'm prepared exploring cloud technology to play on both private and public clouds. Please advise which of the following Open Source Cloud software, other than Ubuntu One, will be more powerful on features:- Abiquo http://www.abiquo.com/ Amazon Elastic Compute Cloud (Amazon EC2)... (2 Replies)
Discussion started by: satimis
2 Replies

3. UNIX for Dummies Questions & Answers

Open source mathematical software for scientists & engineers

I'm look for some opinion on mathematical software from any engineers out there. What is the open source application that --in your opinion(s) -- best meets the same requirements as Mathematica or Maple? I'm running FreeBSD & Linux, btw. (3 Replies)
Discussion started by: Aaron Van
3 Replies
Login or Register to Ask a Question
Net::LDAPI(3)						User Contributed Perl Documentation					     Net::LDAPI(3)

NAME
Net::LDAPI - use LDAP over a UNIX domain socket SYNOPSIS
use Net::LDAPI; $ldapi = Net::LDAPI->new('/var/run/ldapi'); # alternate way use Net::LDAP; $ldapi = Net::LDAP->new('ldapi://'); DESCRIPTION
Communicate using the LDAP protocol to a directory server using a UNIX domain socket. This mechanism is non-standard, UNIX-specific and not widely supported. All the normal "Net::LDAP" methods can be used with a "Net::LDAPI" object; see Net::LDAP for details. CONSTRUCTOR
new ( [SOCKPATH] ) Create a new connection. SOCKPATH can optionally be specified, to specify the location of the UNIX domain socket to connect to. If SOCKPATH is not given, the environment variable "LDAPI_SOCK" is evaluated, and if that does not exist, the value "/var/run/ldapi" is used. See "new" in Net::LDAP for further details. SEE ALSO
Net::LDAP, IO::Socket::UNIX BUGS
None yet. AUTHOR
Derrik Pates <dpates@dsdk12.net> COPYRIGHT
Copyright (c) 2003-2004, Derrik Pates and Graham Barr. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.18.2 2013-07-21 Net::LDAPI(3)