[CentOS-es] Configuracion de Ldap y phamm
William Romero
wromero06 en hotmail.com
Vie Feb 28 23:06:31 UTC 2014
Hola estimados de la lista.
Recientemnete decidi configurar en mi servidor ldap y phamm , el tema es que cada vez que configuro me es imposible ingresar al panel para crear usuarios y domino , esoy usando phamm v6, eso no es todo instale el phpldapamin y tampoco no logro ingresar mas como anonymous pero no me permmite crear nada.
en mi configuracion de slpad.conf
##############################################################
include /etc/openldap/schema/core.schema
include /etc/openldap/schema/corba.schema
include /etc/openldap/schema/cosine.schema
include /etc/openldap/schema/duaconf.schema
include /etc/openldap/schema/dyngroup.schema
include /etc/openldap/schema/inetorgperson.schema
include /etc/openldap/schema/java.schema
include /etc/openldap/schema/misc.schema
include /etc/openldap/schema/nis.schema
include /etc/openldap/schema/openldap.schema
include /etc/openldap/schema/ppolicy.schema
include /etc/openldap/schema/collective.schema
include /etc/openldap/schema/phamm.schema
# Allow LDAPv2 client connections. This is NOT the default.
allow bind_v2
# Do not enable referrals until AFTER you have a working directory
# service AND an understanding of referrals.
#referral ldap://root.openldap.org
pidfile /var/run/openldap/slapd.pid
argsfile /var/run/openldap/slapd.args
# Load dynamic backend modules
# - modulepath is architecture dependent value (32/64-bit system)
# - back_sql.la overlay requires openldap-server-sql package
# - dyngroup.la and dynlist.la cannot be used at the same time
# modulepath /usr/lib/openldap
# modulepath /usr/lib64/openldap
# moduleload accesslog.la
# moduleload auditlog.la
# moduleload back_sql.la
# moduleload chain.la
# moduleload collect.la
# moduleload constraint.la
# moduleload dds.la
# moduleload deref.la
# moduleload dyngroup.la
# moduleload dynlist.la
# moduleload memberof.la
# moduleload pbind.la
# moduleload pcache.la
# moduleload ppolicy.la
# moduleload refint.la
# moduleload retcode.la
# moduleload rwm.la
# moduleload seqmod.la
# moduleload smbk5pwd.la
# moduleload sssvlv.la
# moduleload syncprov.la
# moduleload translucent.la
# moduleload unique.la
# moduleload valsort.la
# The next three lines allow use of TLS for encrypting connections using a
# dummy test certificate which you can generate by running
# /usr/libexec/openldap/generate-server-cert.sh. Your client software may balk
########## at self-signed certificates, however.
#TLSCACertificatePath /etc/openldap/certs
#TLSCertificateFile "\"OpenLDAP Server\""
#TLSCertificateKeyFile /etc/openldap/certs/password
# Sample security restrictions
# Require integrity protection (prevent hijacking)
# Require 112-bit (3DES or better) encryption for updates
# Require 63-bit encryption for simple bind
# security ssf=1 update_ssf=112 simple_bind=64
# Sample access control policy:
# Root DSE: allow anyone to read it
# Subschema (sub)entry DSE: allow anyone to read it
# Other DSEs:
# Allow self write access
# Allow authenticated users read access
# Allow anonymous users to authenticate
# Directives needed to implement policy:
# access to dn.base="" by * read
# access to dn.base="cn=Subschema" by * read
#
# if no access controls are present, the default policy
# allows anyone and everyone to read anything but restricts
# updates to rootdn. (e.g., "access to * by * read")
#
# rootdn can always read and write EVERYTHING!
# enable on-the-fly configuration (cn=config)
#database config
#access to *
# by dn.exact="gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth" manage
# by * none
# enable server status monitoring (cn=monitor)
database monitor
access to * by 'dn.exact="gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth"' read by cn=manager,dc=dominio,dc=com write by * none
#######################################################################
# database definitions
#######################################################################
# Cleartext passwords, especially for the rootdn, should
# be avoided. See slappasswd(8) and slapd.conf(5) for details.
# Use of strong authentication encouraged.
database bdb
suffix dc=dominio,dc=com
checkpoint 1024 15
rootdn cn=manager,dc=dominio,dc=com
rootpw secreto
loglevel 256
# The database directory MUST exist prior to running slapd AND
# should only be accessible by the slapd and slap tools.
# Mode 700 recommended.
directory /var/lib/ldap
# Indices to maintain for this database
index objectClass eq,pres
index ou,cn,mail,surname,givenname eq,pres,sub
index uidNumber,gidNumber,loginShell eq,pres
index uid,memberUid eq,pres,sub
index nisMapName,nisMapEntry eq,pres,sub
# Replicas of this database
#replogfile /var/lib/ldap/openldap-master-replog
#replica host=ldap-1.example.com:389 starttls=critical
# bindmethod=sasl saslmech=GSSAPI
# authcId=host/ldap-master.example.com en EXAMPLE.COM
#############################################################################
luego esta la configuracion del phamm v6 config.php
#############################################################################
/**
* The main Phamm config file
*
* @package Phamm
* @subpackage configuration
* @author Alessandro De Zorzi <adezorzi AT rhx DOT it>
**/
// *============================*
// *=== LDAP Server Settings ===*
// *============================*
// The server address (To use ldapssl change to ldaps://localhost)
define ('LDAP_HOST_NAME','localhost');
// The protocol version [2,3]
define ('LDAP_PROTOCOL_VERSION','3');
// The server port (To use ldapssl change to 636)
define ('LDAP_PORT','389');
// Set LDAP_TLS to 1 if you want to use TLS
define ('LDAP_TLS',0);
// The container
define ('SUFFIX','dc=dominio,dc=com');
// The admin bind dn (could be rootdn)
define ('BINDDN','cn=manager,dc=dominio,dc=com');
// The Phamm container
define ('LDAP_BASE','o=hosting,dc=dominio,dc=com');
// *============================*
// *=== Layout Settings ===*
// *============================*
// Page title
define('ORG_TITLE','dominio');
// URL
define('ORG_URL','http://www.dominio.com');
// Logo
define('ORG_LOGO', './img/phamm_logo.svg');
// CSS Style
$style = 'phamm';
// Default language
define ('DEFAULT_LANGUAGE','es_ES');
// The languages available
$supported_languages = array();
$supported_languages["de_DE"] = "Deutsch";
$supported_languages["en_GB"] = "English";
$supported_languages["es_ES"] = "Español";
$supported_languages["fr_FR"] = "French";
$supported_languages["hu_HU"] = "Hungarian";
$supported_languages["it_IT"] = "Italiano";
$supported_languages["pl_PL"] = "Polish";
$supported_languages["ru_RU"] = "Russian";
$supported_languages["vi_VN"] = "Tiếng Việt"; // Vietnamese
$supported_languages["da_DK"] = "Dansk"; // Danish
$supported_languages["pt_BR"] = "Portuguese";
// $supported_languages["ll_CC"] = "Your language here";
// This TLDs menu
$tld = array();
$tld[] = ".com";
$tld[] = ".org";
$tld[] = ".net";
// $tld[] = ".biz";
// $tld[] = ".info";
// $tld[] = ".eu";
// $tld[] = ".it";
// $tld[] = ".fr";
// $tld[] = ".de";
// *============================*
// *=== Plugins Settings ===*
// *============================*
// The default plugin
define ('DEFAULT_PLUGIN','mail');
// This array contains the active plugins
// NOTE the display order reflect this order
$plugins = array();
$plugins[] = "mail";
$plugins[] = "alias";
//$plugins[] = "dns";
//$plugins[] = "ftp";
//$plugins[] = "proxy";
//$plugins[] = "radius";
//$plugins[] = "radius_stats";
//$plugins[] = "rates";
//$plugins[] = "person";
//$plugins[] = "jabber";
//$plugins[] = "davical";
// Account can be mail OR alias
$plugins_exclusion = array("mail","alias");
// *============================*
// *=== System Settings ===*
// *============================*
// Phamm Version (+ indicate a SVN version)
define ('VERSION','0.6.0');
// Useful if you want hide the version [0,1]
define ('HIDE_VERSION',0);
// Useful if you wish force SSL through PHP [0,1]
define ('FORCE_SSL',0);
// Min password length
define ('PASSWORD_MIN_LENGHT',3);
// Seconds after refresh page
define ('REFRESH_TIME',1);
// A Domain administrator (example: postmaster)
define ('PHAMM_DOMAIN_ADMIN_NAME','postmaster');
// Welcome message
define ('SEND_WELCOME',0);
$welcome_msg = '../welcome_message.txt';
$welcome_subject = 'Welcome!';
# $welcome_sender = 'postmaster en localhost';
# $welcome_bcc = 'postmaster en localhost';
// *============================*
// *=== Advanced Settings ===*
// *============================*
// Debug level [0,1]
define ('DEBUG',0);
// PHP Error Level [0,1,2,10]
define ('ERROR_LEVEL',2);
// Log level 0->don't log [0,1,2]
define ('PHAMM_LOG',0);
// Log file path
define ('LOG_FILE','/var/log/phamm.log');
// Standard LDAP encryption type [CRYPT,MD5,CLEAR]
define ('ENC_TYPE','CRYPT');
// Phamm autogenerate UID from e-mail
// set char used instead @ (default=.)
// i.e. info en example.com produce UID=info.example.com
define ('CHR_UID_ACCOUNT','.');
// Permit login without @domain (use it with carefull)
// define ('DEFAULT_DOMAIN','example.tld');
###############################################################################
agradesco su ayuda a todos ustedes , esto esta dandome mucha lata.
saludos a todos.
Más información sobre la lista de distribución CentOS-es