Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - hanneskeller

Pages: [1]
1
I'm trying to add w2008srv to zentyal 3.5 domain as an additional DC.

So far no success.... dcpromo doesn't find proper DNS records in zentyal server.

any hints for moving forward? adding records to zentyal dns?

2
Error message instead of the Dashboard:
no value sent for required parameter 'dashboard1' Stack: [(eval 656):20] [/usr/share/perl5/HTML/Mason/Component.pm:138] [/usr/share/perl5/HTML/Mason/Request.pm:1305] [/usr/share/perl5/HTML/Mason/Request.pm:1295] [/usr/share/perl5/HTML/Mason/Request.pm:486] [/usr/share/perl5/HTML/Mason/Request.pm:486] [/usr/share/perl5/HTML/Mason/Request.pm:436] [/usr/share/perl5/HTML/Mason/Interp.pm:345] [/usr/share/perl5/EBox/Html.pm:174] [/usr/share/perl5/EBox/CGI/Base.pm:152] [/usr/share/perl5/EBox/CGI/Base.pm:175] [/usr/share/perl5/EBox/CGI/Base.pm:335] [/usr/share/perl5/EBox/CGI/Base.pm:334] [/usr/share/perl5/EBox/CGI/Run.pm:91] [/usr/share/perl5/EBox/CGI/Run.pm:67] [/usr/share/zentyal/psgi/zentyal.psgi:46] [/usr/share/perl5/Plack/App/URLMap.pm:71] [/usr/share/perl5/Plack/Component.pm:50] [/usr/share/perl5/EBox/Middleware/Auth.pm:354] [/usr/share/perl5/Plack/Component.pm:50] [/usr/share/perl5/Plack/Middleware/Conditional.pm:16] [/usr/share/perl5/Plack/Component.pm:50] [/usr/share/perl5/EBox/WebAdmin/Middleware/SubAppAuth.pm:53] [/usr/share/perl5/Plack/Component.pm:50] [/usr/share/perl5/Plack/Middleware/Session.pm:52] [/usr/share/perl5/Plack/Component.pm:50] [/usr/share/perl5/Plack/Middleware/ReverseProxy.pm:68] [/usr/share/perl5/Plack/Component.pm:50] [/usr/share/perl5/EBox/Middleware/UnhandledError.pm:78] [/usr/share/perl5/EBox/Middleware/UnhandledError.pm:77] [/usr/share/perl5/Plack/Component.pm:50] [/usr/share/zentyal/psgi/zentyal.psgi:0] [/usr/share/zentyal/psgi/zentyal.psgi:0] at /usr/share/perl5/EBox/CGI/Base.pm line 340

3
I have been struggling with copulating zentyal with Active Directory... I know that nothing good can come out of it, but...

I have done a clean install of Z3.4. Only few modules onboard. Network set with fixed IP and the name of Z-box described in AD DNS.

Then with users module configuring LDAP to additional controller of the AD. Success - no error messages... but after saving the system totally crashes - only error messages are displayed to GUI. SSH is still accessible

AD is based on Windows2008 server

I could live with standalone DC, but then I have to find out how to migrate users from that AD to Z3.4 domain...


4
Installation and Upgrades / Re: [SOLVERD]trouble with ldap+php
« on: July 01, 2011, 12:29:01 pm »
used this example: http://forum.zentyal.org/index.php/topic,1616.msg6990.html#msg6990 and got things working

5
Installation and Upgrades / [SOLVERD]trouble with ldap+php
« on: June 30, 2011, 01:24:19 pm »
Hi,

I'm trying to write an php-application, that authenticates itself against ebox LDAP. For some reasons it doesn't authenticate. The same server's virtual host serves also another website on which Joomla runs. On that Joomla installation  users can authenticate themselves.

As a newbie - I looked also the examples that are available on different sites, but nothing happens.

in the system log I can find only:
Jun 30 14:18:01 fw1 slapd[30928]: connection_read(35): no connection!
Jun 30 14:18:01 fw1 slapd[30928]: connection_read(35): no connection!
Jun 30 14:20:01 fw1 CRON[1299]: (root) CMD (/usr/share/ebox/ebox-cronjob-runner >> /dev/null 2>&1)
Jun 30 14:20:01 fw1 CRON[1300]: (root) CMD (/usr/share/ebox-usersandgroups/slave-sync)
Jun 30 14:20:09 fw1 slapd[30928]: connection_read(37): no connection!

Can anybody tell - is something not configured yet? php5-ldap is installed...

the php-code itself:
function authorize($usr,$pwd) {
$ldap['user'] = $usr;
$ldap['pass'] = $pwd;
$ldap['host'] = '127.0.0.1';
$ldap['port'] = '389';
$ldap['dn'] = 'ou=Users,dc=fw1,dc=nec,dc=eu';
$ldap['base'] = 'dc=fw1,dc=nec,dc=eu';

// connecting to ldap
$ldap['conn'] = ldap_connect( $ldap['host'], $ldap['port'] )
or die( "Could not connect to {$ldap['host']}" );


$ldap['conn'] = ldap_connect( $ldap['host'], $ldap['port'] );
$ldap['bind'] = ldap_bind( $ldap['conn'],"cn=".$ldap['user'].",". $ldap['dn'], $ldap['pass']);

if( !$ldap['bind']){
echo 'did not connect';
return FALSE;
exit;
} else {
echo ' connected';
ldap_unbind($ldap['conn']);
return TRUE;
}

return FALSE;
}

bests

Hannes

Pages: [1]