You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@karaf.apache.org by AndyPhillips404 <an...@fastmail.com> on 2017/05/31 16:22:08 UTC

Unable to get jaas LDAP working on Karaf 4.0.9

I am trying to get the jaas ldap working on Karaf 4.0.9 and can't seem to get
it to work.   I have put the following file in the deploy directory:

<?xml version="1.0" encoding="UTF-8"?>
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
           xmlns:jaas="http://karaf.apache.org/xmlns/jaas/v1.0.0"
          
xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0"
          
xmlns:ext="http://aries.apache.org/blueprint/xmlns/blueprint-ext/v1.0.0">

    <jaas:config name="karaf" rank="2">
        <jaas:module
className="org.apache.karaf.jaas.modules.ldap.LDAPLoginModule"
flags="required">
            initialContextFactory=com.sun.jndi.ldap.LdapCtxFactory
            connection.url = ldap://ds.hdscores.com:10389
            connection.username=(REMOVED)
            connection.password=(REMOVED)
            connection.protocol=
            user.base.dn = ou=people,dc=hdscores,dc=com
            user.filter = (uid=%u)
            user.search.subtree = true
            role.base.dn = ou=karaf,ou=groups,dc=hdscores,dc=com
            role.filter = (&amp;(objectClass=groupOfNames)(member=%dn))
            role.name.attribute = cn
            role.search.subtree = true
            authentication = simple
            debug=true
            detailedLoginExcepion = true
        </jaas:module>
    </jaas:config>

</blueprint>

when I use realm-manage and then do a user-list, it says:
Can't get the list of users (no backing engine service found)

karaf@root()> bundle:list
START LEVEL 100 , List Threshold: 50
ID | State  | Lvl | Version | Name
---------------------------------------------
52 | Active |  80 | 0.0.0   | ldap-module.xml
karaf@root()> jaas:realm-manage
A valid realm or the realm index need to be specified
karaf@root()> jaas:realm-manage --index 1
karaf@root()> jaas:user-list
Can't get the list of users (no backing engine service found)
karaf@root()> 

this is nothing in the log to debug or anything i can see what is going
on....   any thoughts?




--
View this message in context: http://karaf.922171.n3.nabble.com/Unable-to-get-jaas-LDAP-working-on-Karaf-4-0-9-tp4050510.html
Sent from the Karaf - User mailing list archive at Nabble.com.

Re: Unable to get jaas LDAP working on Karaf 4.0.9

Posted by AndyPhillips404 <an...@fastmail.com>.
I just added the code and tested it on my side, its on GitHub as pull request
#309

Take a look at let me know your feedback.   





--
View this message in context: http://karaf.922171.n3.nabble.com/Unable-to-get-jaas-LDAP-working-on-Karaf-4-0-9-tp4050510p4050524.html
Sent from the Karaf - User mailing list archive at Nabble.com.

Re: Unable to get jaas LDAP working on Karaf 4.0.9

Posted by AndyPhillips404 <an...@fastmail.com>.
Good point!   I'll write it and test it now.



--
View this message in context: http://karaf.922171.n3.nabble.com/Unable-to-get-jaas-LDAP-working-on-Karaf-4-0-9-tp4050510p4050519.html
Sent from the Karaf - User mailing list archive at Nabble.com.

Re: Unable to get jaas LDAP working on Karaf 4.0.9

Posted by Jean-Baptiste Onofré <jb...@nanthrax.net>.
We can start with list user/role but define OperationNotSupportedException for 
the other actions (add, delete, ...).

I'm not a big fan of LDIFF script to change that (it would be public in the 
blueprint).

Regards
JB

On 05/31/2017 09:58 PM, AndyPhillips404 wrote:
> Question,
> I'm thinking about the implementation.   At a minimum i can easily list the
> users and groups based on the options provided by the login module.   I can
> use the user.filter and role.filter.   Unfortunately, i think  you are right
> about the add and delete both users, roles, and groups regarding
> implementation specific.   This typically would need good knowledge of the
> LDAP structure.
> 
> One thought I had is, you can have an option that allows them to write ldiff
> files (adding options for each) for add, delete, users and roles.   Groups i
> have to think about some.   the ldiff are standard files for executing
> commands on the server, can be implementation specific.  I can then replace
> the standard variables ("%u, %dn, %fqdn) in the ldiff and execute on the
> server.
> 
> With all that said, here are my thoughts:
> 1.  Just support listing users, roles (might be a good start)
> 2.  Add to LDAPOptions to add new options to add LDIFF scripts for add,
> delete users, add to roles, remove from roles, etc.
> 
> Thoughts?
> Thanks!
> Andy P
> 
> 
> 
> --
> View this message in context: http://karaf.922171.n3.nabble.com/Unable-to-get-jaas-LDAP-working-on-Karaf-4-0-9-tp4050510p4050517.html
> Sent from the Karaf - User mailing list archive at Nabble.com.
> 

-- 
Jean-Baptiste Onofré
jbonofre@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com

Re: Unable to get jaas LDAP working on Karaf 4.0.9

Posted by AndyPhillips404 <an...@fastmail.com>.
Question,
I'm thinking about the implementation.   At a minimum i can easily list the
users and groups based on the options provided by the login module.   I can
use the user.filter and role.filter.   Unfortunately, i think  you are right
about the add and delete both users, roles, and groups regarding
implementation specific.   This typically would need good knowledge of the
LDAP structure.   

One thought I had is, you can have an option that allows them to write ldiff
files (adding options for each) for add, delete, users and roles.   Groups i
have to think about some.   the ldiff are standard files for executing
commands on the server, can be implementation specific.  I can then replace
the standard variables ("%u, %dn, %fqdn) in the ldiff and execute on the
server.  

With all that said, here are my thoughts:
1.  Just support listing users, roles (might be a good start)
2.  Add to LDAPOptions to add new options to add LDIFF scripts for add,
delete users, add to roles, remove from roles, etc.

Thoughts?
Thanks!
Andy P



--
View this message in context: http://karaf.922171.n3.nabble.com/Unable-to-get-jaas-LDAP-working-on-Karaf-4-0-9-tp4050510p4050517.html
Sent from the Karaf - User mailing list archive at Nabble.com.

Re: Unable to get jaas LDAP working on Karaf 4.0.9

Posted by Jean-Baptiste Onofré <jb...@nanthrax.net>.
E-mail or pull request: the most convenient for you !

Thanks !
Regards
JB

On 05/31/2017 07:00 PM, AndyPhillips404 wrote:
> I see it now, went to the code base!   I'll look at it now!   Then i can
> email you the code to take a look after i test it
> 
> 
> 
> --
> View this message in context: http://karaf.922171.n3.nabble.com/Unable-to-get-jaas-LDAP-working-on-Karaf-4-0-9-tp4050510p4050515.html
> Sent from the Karaf - User mailing list archive at Nabble.com.
> 

-- 
Jean-Baptiste Onofré
jbonofre@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com

Re: Unable to get jaas LDAP working on Karaf 4.0.9

Posted by AndyPhillips404 <an...@fastmail.com>.
I see it now, went to the code base!   I'll look at it now!   Then i can
email you the code to take a look after i test it



--
View this message in context: http://karaf.922171.n3.nabble.com/Unable-to-get-jaas-LDAP-working-on-Karaf-4-0-9-tp4050510p4050515.html
Sent from the Karaf - User mailing list archive at Nabble.com.

Re: Unable to get jaas LDAP working on Karaf 4.0.9

Posted by Jean-Baptiste Onofré <jb...@nanthrax.net>.
You can take a look on the JdbcBackingEngine: basically, the backing engine uses 
the configuration from the login module and has to be exposed as a service.

Let me know if I can help in any way (review your code or whatever).

Regards
JB

On 05/31/2017 06:40 PM, AndyPhillips404 wrote:
> Great, thanks for the info.   i'll try it.
> 
> Also, i'll be more than happy to write the backend of LDAP.   I owe you guys
> some code :).
> 
> I can use the user.filter and role.filter to get the user list and roles.
> What interface / abstract class do i extend?
> 
> 
> 
> 
> --
> View this message in context: http://karaf.922171.n3.nabble.com/Unable-to-get-jaas-LDAP-working-on-Karaf-4-0-9-tp4050510p4050513.html
> Sent from the Karaf - User mailing list archive at Nabble.com.
> 

-- 
Jean-Baptiste Onofré
jbonofre@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com

Re: Unable to get jaas LDAP working on Karaf 4.0.9

Posted by AndyPhillips404 <an...@fastmail.com>.
Great, thanks for the info.   i'll try it. 

Also, i'll be more than happy to write the backend of LDAP.   I owe you guys
some code :).   

I can use the user.filter and role.filter to get the user list and roles.  
What interface / abstract class do i extend?  




--
View this message in context: http://karaf.922171.n3.nabble.com/Unable-to-get-jaas-LDAP-working-on-Karaf-4-0-9-tp4050510p4050513.html
Sent from the Karaf - User mailing list archive at Nabble.com.

Re: Unable to get jaas LDAP working on Karaf 4.0.9

Posted by Jean-Baptiste Onofré <jb...@nanthrax.net>.
Hi Andy,

LDAP Login Module doesn't provide a backend (JDBC or Properties login module), 
that's why you can't use the jaas:user-list commands. I think I can add a 
backend pretty quickly but I'm not sure it would work with all LDAP backend 
(depending of the binding, etc).

Right now, the only way to test is to try to login (on ssh) with an user on LDAP.

You will see what's going on in the log then.

Regards
JB

On 05/31/2017 06:22 PM, AndyPhillips404 wrote:
> I am trying to get the jaas ldap working on Karaf 4.0.9 and can't seem to get
> it to work.   I have put the following file in the deploy directory:
> 
> <?xml version="1.0" encoding="UTF-8"?>
> <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
>             xmlns:jaas="http://karaf.apache.org/xmlns/jaas/v1.0.0"
>            
> xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0"
>            
> xmlns:ext="http://aries.apache.org/blueprint/xmlns/blueprint-ext/v1.0.0">
> 
>      <jaas:config name="karaf" rank="2">
>          <jaas:module
> className="org.apache.karaf.jaas.modules.ldap.LDAPLoginModule"
> flags="required">
>              initialContextFactory=com.sun.jndi.ldap.LdapCtxFactory
>              connection.url = ldap://ds.hdscores.com:10389
>              connection.username=(REMOVED)
>              connection.password=(REMOVED)
>              connection.protocol=
>              user.base.dn = ou=people,dc=hdscores,dc=com
>              user.filter = (uid=%u)
>              user.search.subtree = true
>              role.base.dn = ou=karaf,ou=groups,dc=hdscores,dc=com
>              role.filter = (&amp;(objectClass=groupOfNames)(member=%dn))
>              role.name.attribute = cn
>              role.search.subtree = true
>              authentication = simple
>              debug=true
>              detailedLoginExcepion = true
>          </jaas:module>
>      </jaas:config>
> 
> </blueprint>
> 
> when I use realm-manage and then do a user-list, it says:
> Can't get the list of users (no backing engine service found)
> 
> karaf@root()> bundle:list
> START LEVEL 100 , List Threshold: 50
> ID | State  | Lvl | Version | Name
> ---------------------------------------------
> 52 | Active |  80 | 0.0.0   | ldap-module.xml
> karaf@root()> jaas:realm-manage
> A valid realm or the realm index need to be specified
> karaf@root()> jaas:realm-manage --index 1
> karaf@root()> jaas:user-list
> Can't get the list of users (no backing engine service found)
> karaf@root()>
> 
> this is nothing in the log to debug or anything i can see what is going
> on....   any thoughts?
> 
> 
> 
> 
> --
> View this message in context: http://karaf.922171.n3.nabble.com/Unable-to-get-jaas-LDAP-working-on-Karaf-4-0-9-tp4050510.html
> Sent from the Karaf - User mailing list archive at Nabble.com.
> 

-- 
Jean-Baptiste Onofré
jbonofre@apache.org
http://blog.nanthrax.net
Talend - http://www.talend.com

Re: Unable to get jaas LDAP working on Karaf 4.0.9

Posted by AndyPhillips404 <an...@fastmail.com>.
Here is a copy of the log to help
2017-05-31 09:23:37,599 | DEBUG | pool-18-thread-1 | core                            
| 37 - org.apache.karaf.log.core - 4.0.9 | ServiceEvent REGISTERED -
[org.apache.karaf.log.core.LogEventFormatter] - org.apache.karaf.log.core
2017-05-31 09:23:37,600 | DEBUG | pool-18-thread-1 | core                            
| 37 - org.apache.karaf.log.core - 4.0.9 | ServiceEvent REGISTERED -
[org.apache.karaf.log.core.LogService] - org.apache.karaf.log.core
2017-05-31 09:23:37,601 | INFO  | pool-2-thread-1  | CommandExtension                
| 43 - org.apache.karaf.shell.core - 4.0.9 | Registering commands for bundle
org.apache.karaf.log.core/4.0.9
2017-05-31 09:23:37,602 | DEBUG | pool-2-thread-1  | core                            
| 37 - org.apache.karaf.log.core - 4.0.9 | BundleEvent STARTED -
org.apache.karaf.log.core
2017-05-31 09:23:37,602 | INFO  | pool-2-thread-1  | FeaturesServiceImpl             
| 8 - org.apache.karaf.features.core - 4.0.9 |  
org.apache.karaf.system.core/4.0.9
2017-05-31 09:23:37,603 | DEBUG | pool-18-thread-1 | core                            
| 37 - org.apache.karaf.log.core - 4.0.9 | ServiceEvent REGISTERED -
[org.apache.karaf.log.core.LogMBean, javax.management.DynamicMBean,
javax.management.MBeanRegistration] - org.apache.karaf.log.core
2017-05-31 09:23:37,605 | DEBUG | pool-2-thread-1  | core                            
| 46 - org.apache.karaf.system.core - 4.0.9 | BundleEvent STARTING -
org.apache.karaf.system.core
2017-05-31 09:23:37,607 | DEBUG | pool-2-thread-1  | core                            
| 46 - org.apache.karaf.system.core - 4.0.9 | ServiceEvent REGISTERED -
[org.apache.karaf.system.SystemService] - org.apache.karaf.system.core
2017-05-31 09:23:37,609 | DEBUG | pool-2-thread-1  | core                            
| 46 - org.apache.karaf.system.core - 4.0.9 | ServiceEvent REGISTERED -
[org.apache.karaf.system.management.SystemMBean,
javax.management.DynamicMBean, javax.management.MBeanRegistration] -
org.apache.karaf.system.core
2017-05-31 09:23:37,610 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Scanning bundle
org.apache.karaf.system.core/4.0.9 for blueprint application
2017-05-31 09:23:37,610 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | No blueprint application
found in bundle org.apache.karaf.system.core/4.0.9
2017-05-31 09:23:37,610 | DEBUG | pool-2-thread-1  |
InfoBundleTrackerCustomizer      | 41 - org.apache.karaf.shell.commands -
4.0.9 | Ignore incorrect info null provided by bundle
org.apache.karaf.system.core
2017-05-31 09:23:37,610 | DEBUG | pool-2-thread-1  | CommandExtender                 
| 43 - org.apache.karaf.shell.core - 4.0.9 | org.apache.karaf.system.core
(46): Starting extension synchronously
2017-05-31 09:23:37,611 | DEBUG | pool-12-thread-1 | Nio2Acceptor                    
| 48 - org.apache.sshd.core - 0.14.0 | Creating Nio2Acceptor
2017-05-31 09:23:37,612 | DEBUG | pool-12-thread-1 | Nio2Acceptor                    
| 48 - org.apache.sshd.core - 0.14.0 | Binding Nio2Acceptor to address
/0.0.0.0:8101
2017-05-31 09:23:37,613 | INFO  | pool-2-thread-1  | CommandExtension                
| 43 - org.apache.karaf.shell.core - 4.0.9 | Registering commands for bundle
org.apache.karaf.system.core/4.0.9
2017-05-31 09:23:37,614 | DEBUG | pool-2-thread-1  | core                            
| 46 - org.apache.karaf.system.core - 4.0.9 | BundleEvent STARTED -
org.apache.karaf.system.core
2017-05-31 09:23:37,614 | INFO  | pool-2-thread-1  | FeaturesServiceImpl             
| 8 - org.apache.karaf.features.core - 4.0.9 |  
org.apache.aries.jmx.api/1.1.5
2017-05-31 09:23:37,614 | DEBUG | pool-2-thread-1  | api                             
| 14 - org.apache.aries.jmx.api - 1.1.5 | BundleEvent STARTING -
org.apache.aries.jmx.api
2017-05-31 09:23:37,614 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Scanning bundle
org.apache.aries.jmx.api/1.1.5 for blueprint application
2017-05-31 09:23:37,614 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | No blueprint application
found in bundle org.apache.aries.jmx.api/1.1.5
2017-05-31 09:23:37,614 | DEBUG | pool-2-thread-1  |
InfoBundleTrackerCustomizer      | 41 - org.apache.karaf.shell.commands -
4.0.9 | Ignore incorrect info null provided by bundle
org.apache.aries.jmx.api
2017-05-31 09:23:37,615 | DEBUG | pool-2-thread-1  | api                             
| 14 - org.apache.aries.jmx.api - 1.1.5 | BundleEvent STARTED -
org.apache.aries.jmx.api
2017-05-31 09:23:37,615 | INFO  | pool-2-thread-1  | FeaturesServiceImpl             
| 8 - org.apache.karaf.features.core - 4.0.9 |  
org.apache.aries.jmx.whiteboard/1.1.5
2017-05-31 09:23:37,616 | DEBUG | pool-2-thread-1  | whiteboard                      
| 18 - org.apache.aries.jmx.whiteboard - 1.1.5 | BundleEvent STARTING -
org.apache.aries.jmx.whiteboard
2017-05-31 09:23:37,617 | DEBUG | pool-2-thread-1  | JmxWhiteboardSupport            
| 18 - org.apache.aries.jmx.whiteboard - 1.1.5 | addMBeanServer: Adding
MBeanServer com.sun.jmx.mbeanserver.JmxMBeanServer@6979e8cb
2017-05-31 09:23:37,618 | DEBUG | pool-2-thread-1  | JmxWhiteboardSupport            
| 18 - org.apache.aries.jmx.whiteboard - 1.1.5 | registerMBean: Adding MBean
org.apache.karaf.instance.core.internal.InstancesMBeanImpl@210d211e
2017-05-31 09:23:37,619 | DEBUG | pool-2-thread-1  | JmxWhiteboardSupport            
| 18 - org.apache.aries.jmx.whiteboard - 1.1.5 | registerMBean: Adding MBean
org.apache.karaf.features.internal.management.FeaturesServiceMBeanImpl@6d902dba
2017-05-31 09:23:37,621 | DEBUG | pool-2-thread-1  | core                            
| 8 - org.apache.karaf.features.core - 4.0.9 | ServiceEvent REGISTERED -
[org.apache.karaf.features.FeaturesListener] -
org.apache.karaf.features.core
2017-05-31 09:23:37,621 | DEBUG | pool-2-thread-1  | JmxWhiteboardSupport            
| 18 - org.apache.aries.jmx.whiteboard - 1.1.5 | registerMBean: Adding MBean
org.apache.karaf.packages.core.internal.PackagesMBeanImpl@4a86d9ae
2017-05-31 09:23:37,622 | DEBUG | pool-2-thread-1  | JmxWhiteboardSupport            
| 18 - org.apache.aries.jmx.whiteboard - 1.1.5 | registerMBean: Adding MBean
org.apache.karaf.system.management.internal.SystemMBeanImpl@649f787f
2017-05-31 09:23:37,622 | DEBUG | pool-2-thread-1  | JmxWhiteboardSupport            
| 18 - org.apache.aries.jmx.whiteboard - 1.1.5 | registerMBean: Adding MBean
org.apache.karaf.bundle.core.internal.BundlesMBeanImpl@dd31c85
2017-05-31 09:23:37,622 | DEBUG | pool-2-thread-1  | JmxWhiteboardSupport            
| 18 - org.apache.aries.jmx.whiteboard - 1.1.5 | registerMBean: Adding MBean
org.apache.karaf.service.core.internal.ServicesMBeanImpl@55caab10
2017-05-31 09:23:37,623 | DEBUG | pool-2-thread-1  | JmxWhiteboardSupport            
| 18 - org.apache.aries.jmx.whiteboard - 1.1.5 | registerMBean: Adding MBean
org.apache.karaf.management.internal.JMXSecurityMBeanImpl@297d53ae
2017-05-31 09:23:37,623 | DEBUG | pool-2-thread-1  | JmxWhiteboardSupport            
| 18 - org.apache.aries.jmx.whiteboard - 1.1.5 | registerMBean: Adding MBean
org.apache.karaf.log.core.internal.LogMBeanImpl@238e3250
2017-05-31 09:23:37,623 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Scanning bundle
org.apache.aries.jmx.whiteboard/1.1.5 for blueprint application
2017-05-31 09:23:37,624 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | No blueprint application
found in bundle org.apache.aries.jmx.whiteboard/1.1.5
2017-05-31 09:23:37,624 | DEBUG | pool-2-thread-1  |
InfoBundleTrackerCustomizer      | 41 - org.apache.karaf.shell.commands -
4.0.9 | Ignore incorrect info null provided by bundle
org.apache.aries.jmx.whiteboard
2017-05-31 09:23:37,624 | DEBUG | pool-2-thread-1  | whiteboard                      
| 18 - org.apache.aries.jmx.whiteboard - 1.1.5 | BundleEvent STARTED -
org.apache.aries.jmx.whiteboard
2017-05-31 09:23:37,624 | INFO  | pool-2-thread-1  | FeaturesServiceImpl             
| 8 - org.apache.karaf.features.core - 4.0.9 |  
org.apache.karaf.config.core/4.0.9
2017-05-31 09:23:37,626 | DEBUG | pool-2-thread-1  | core                            
| 24 - org.apache.karaf.config.core - 4.0.9 | BundleEvent STARTING -
org.apache.karaf.config.core
2017-05-31 09:23:37,629 | DEBUG | pool-2-thread-1  | core                            
| 24 - org.apache.karaf.config.core - 4.0.9 | ServiceEvent REGISTERED -
[org.apache.karaf.config.core.ConfigRepository] -
org.apache.karaf.config.core
2017-05-31 09:23:37,631 | DEBUG | pool-2-thread-1  | JmxWhiteboardSupport            
| 18 - org.apache.aries.jmx.whiteboard - 1.1.5 | registerMBean: Adding MBean
org.apache.karaf.config.core.impl.ConfigMBeanImpl@1784351c
2017-05-31 09:23:37,632 | DEBUG | pool-2-thread-1  | core                            
| 24 - org.apache.karaf.config.core - 4.0.9 | ServiceEvent REGISTERED -
[org.apache.karaf.config.core.ConfigMBean, javax.management.DynamicMBean,
javax.management.MBeanRegistration] - org.apache.karaf.config.core
2017-05-31 09:23:37,632 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Scanning bundle
org.apache.karaf.config.core/4.0.9 for blueprint application
2017-05-31 09:23:37,632 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | No blueprint application
found in bundle org.apache.karaf.config.core/4.0.9
2017-05-31 09:23:37,632 | DEBUG | pool-2-thread-1  |
InfoBundleTrackerCustomizer      | 41 - org.apache.karaf.shell.commands -
4.0.9 | Ignore incorrect info null provided by bundle
org.apache.karaf.config.core
2017-05-31 09:23:37,632 | DEBUG | pool-2-thread-1  | CommandExtender                 
| 43 - org.apache.karaf.shell.core - 4.0.9 | org.apache.karaf.config.core
(24): Starting extension synchronously
2017-05-31 09:23:37,638 | INFO  | pool-2-thread-1  | CommandExtension                
| 43 - org.apache.karaf.shell.core - 4.0.9 | Registering commands for bundle
org.apache.karaf.config.core/4.0.9
2017-05-31 09:23:37,640 | DEBUG | pool-2-thread-1  | core                            
| 24 - org.apache.karaf.config.core - 4.0.9 | ServiceEvent REGISTERED -
[org.osgi.service.cm.ConfigurationListener] - org.apache.karaf.config.core
2017-05-31 09:23:37,641 | DEBUG | pool-2-thread-1  | core                            
| 24 - org.apache.karaf.config.core - 4.0.9 | BundleEvent STARTED -
org.apache.karaf.config.core
2017-05-31 09:23:37,641 | INFO  | pool-2-thread-1  | FeaturesServiceImpl             
| 8 - org.apache.karaf.features.core - 4.0.9 |  
org.apache.karaf.kar.core/4.0.9
2017-05-31 09:23:37,643 | DEBUG | pool-2-thread-1  | core                            
| 36 - org.apache.karaf.kar.core - 4.0.9 | BundleEvent STARTING -
org.apache.karaf.kar.core
2017-05-31 09:23:37,644 | DEBUG | pool-2-thread-1  | core                            
| 36 - org.apache.karaf.kar.core - 4.0.9 | ServiceEvent REGISTERED -
[org.osgi.service.cm.ManagedService] - org.apache.karaf.kar.core
2017-05-31 09:23:37,645 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Scanning bundle
org.apache.karaf.kar.core/4.0.9 for blueprint application
2017-05-31 09:23:37,646 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | No blueprint application
found in bundle org.apache.karaf.kar.core/4.0.9
2017-05-31 09:23:37,646 | DEBUG | pool-2-thread-1  |
InfoBundleTrackerCustomizer      | 41 - org.apache.karaf.shell.commands -
4.0.9 | Ignore incorrect info null provided by bundle
org.apache.karaf.kar.core
2017-05-31 09:23:37,646 | DEBUG | pool-2-thread-1  | CommandExtender                 
| 43 - org.apache.karaf.shell.core - 4.0.9 | org.apache.karaf.kar.core (36):
Starting extension synchronously
2017-05-31 09:23:37,649 | INFO  | pool-2-thread-1  | CommandExtension                
| 43 - org.apache.karaf.shell.core - 4.0.9 | Registering commands for bundle
org.apache.karaf.kar.core/4.0.9
2017-05-31 09:23:37,649 | DEBUG | pool-21-thread-1 | core                            
| 36 - org.apache.karaf.kar.core - 4.0.9 | ServiceEvent REGISTERED -
[org.apache.karaf.kar.KarService] - org.apache.karaf.kar.core
2017-05-31 09:23:37,649 | DEBUG | pool-2-thread-1  | core                            
| 36 - org.apache.karaf.kar.core - 4.0.9 | BundleEvent STARTED -
org.apache.karaf.kar.core
2017-05-31 09:23:37,649 | INFO  | pool-2-thread-1  | FeaturesServiceImpl             
| 8 - org.apache.karaf.features.core - 4.0.9 |  
org.apache.karaf.diagnostic.core/4.0.9
2017-05-31 09:23:37,650 | DEBUG | pool-8-thread-2  | kar                             
| 27 - org.apache.karaf.deployer.kar - 4.0.9 | ServiceEvent REGISTERED -
[org.apache.felix.fileinstall.ArtifactInstaller,
org.apache.felix.fileinstall.ArtifactListener] -
org.apache.karaf.deployer.kar
2017-05-31 09:23:37,650 | DEBUG | pool-2-thread-1  | core                            
| 29 - org.apache.karaf.diagnostic.core - 4.0.9 | BundleEvent STARTING -
org.apache.karaf.diagnostic.core
2017-05-31 09:23:37,650 | DEBUG | pool-21-thread-1 | JmxWhiteboardSupport            
| 18 - org.apache.aries.jmx.whiteboard - 1.1.5 | registerMBean: Adding MBean
org.apache.karaf.kar.internal.KarsMBeanImpl@35b6e3d
2017-05-31 09:23:37,652 | DEBUG | pool-21-thread-1 | core                            
| 36 - org.apache.karaf.kar.core - 4.0.9 | ServiceEvent REGISTERED -
[org.apache.karaf.kar.KarsMBean, javax.management.DynamicMBean,
javax.management.MBeanRegistration] - org.apache.karaf.kar.core
2017-05-31 09:23:37,652 | DEBUG | pool-2-thread-1  | core                            
| 29 - org.apache.karaf.diagnostic.core - 4.0.9 | ServiceEvent REGISTERED -
[org.apache.karaf.diagnostic.core.DumpProvider] -
org.apache.karaf.diagnostic.core
2017-05-31 09:23:37,654 | DEBUG | pool-2-thread-1  | core                            
| 29 - org.apache.karaf.diagnostic.core - 4.0.9 | ServiceEvent REGISTERED -
[org.apache.karaf.diagnostic.core.DumpProvider] -
org.apache.karaf.diagnostic.core
2017-05-31 09:23:37,655 | DEBUG | pool-2-thread-1  | JmxWhiteboardSupport            
| 18 - org.apache.aries.jmx.whiteboard - 1.1.5 | registerMBean: Adding MBean
org.apache.karaf.diagnostic.management.internal.DiagnosticDumpMBeanImpl@2989f7a7
2017-05-31 09:23:37,657 | DEBUG | pool-2-thread-1  | core                            
| 29 - org.apache.karaf.diagnostic.core - 4.0.9 | ServiceEvent REGISTERED -
[org.apache.karaf.diagnostic.management.DiagnosticDumpMBean,
javax.management.DynamicMBean, javax.management.MBeanRegistration] -
org.apache.karaf.diagnostic.core
2017-05-31 09:23:37,657 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Scanning bundle
org.apache.karaf.diagnostic.core/4.0.9 for blueprint application
2017-05-31 09:23:37,657 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | No blueprint application
found in bundle org.apache.karaf.diagnostic.core/4.0.9
2017-05-31 09:23:37,657 | DEBUG | pool-2-thread-1  |
InfoBundleTrackerCustomizer      | 41 - org.apache.karaf.shell.commands -
4.0.9 | Ignore incorrect info null provided by bundle
org.apache.karaf.diagnostic.core
2017-05-31 09:23:37,657 | DEBUG | pool-2-thread-1  | CommandExtender                 
| 43 - org.apache.karaf.shell.core - 4.0.9 |
org.apache.karaf.diagnostic.core (29): Starting extension synchronously
2017-05-31 09:23:37,658 | DEBUG | raf-4.0.9/deploy | BlueprintURLHandler             
| 25 - org.apache.karaf.deployer.blueprint - 4.0.9 | Blueprint xml URL is:
[file:/Users/andyphillips404/Documents/Development/apache-karaf-4.0.9/deploy/ldap-module.xml]
2017-05-31 09:23:37,658 | INFO  | pool-2-thread-1  | CommandExtension                
| 43 - org.apache.karaf.shell.core - 4.0.9 | Registering commands for bundle
org.apache.karaf.diagnostic.core/4.0.9
2017-05-31 09:23:37,658 | DEBUG | pool-2-thread-1  | core                            
| 29 - org.apache.karaf.diagnostic.core - 4.0.9 | BundleEvent STARTED -
org.apache.karaf.diagnostic.core
2017-05-31 09:23:37,658 | INFO  | pool-2-thread-1  | FeaturesServiceImpl             
| 8 - org.apache.karaf.features.core - 4.0.9 |  
org.apache.aries.jmx.blueprint.core/1.1.5
2017-05-31 09:23:37,660 | DEBUG | pool-2-thread-1  | core                            
| 16 - org.apache.aries.jmx.blueprint.core - 1.1.5 | BundleEvent STARTING -
org.apache.aries.jmx.blueprint.core
2017-05-31 09:23:37,660 | DEBUG | pool-2-thread-1  | blueprint                       
| 16 - org.apache.aries.jmx.blueprint.core - 1.1.5 | Awaiting MBeanServer
service registration
2017-05-31 09:23:37,660 | DEBUG | pool-2-thread-1  | blueprint                       
| 16 - org.apache.aries.jmx.blueprint.core - 1.1.5 | Adding MBeanServer:
[javax.management.MBeanServer]
2017-05-31 09:23:37,661 | DEBUG | pool-2-thread-1  | blueprint                       
| 16 - org.apache.aries.jmx.blueprint.core - 1.1.5 | Registering bundle
state monitor with MBeanServer:
com.sun.jmx.mbeanserver.JmxMBeanServer@6979e8cb with name:
org.apache.aries.blueprint:service=blueprintState,version=1.0
2017-05-31 09:23:37,667 | DEBUG | pool-2-thread-1  | core                            
| 16 - org.apache.aries.jmx.blueprint.core - 1.1.5 | ServiceEvent REGISTERED
- [org.osgi.service.blueprint.container.BlueprintListener] -
org.apache.aries.jmx.blueprint.core
2017-05-31 09:23:37,667 | DEBUG | pool-2-thread-1  | blueprint                       
| 16 - org.apache.aries.jmx.blueprint.core - 1.1.5 | Registering bundle
metadata monitor with MBeanServer:
com.sun.jmx.mbeanserver.JmxMBeanServer@6979e8cb with name:
org.apache.aries.blueprint:service=blueprintMetadata,version=1.0
2017-05-31 09:23:37,669 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Scanning bundle
org.apache.aries.jmx.blueprint.core/1.1.5 for blueprint application
2017-05-31 09:23:37,669 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | No blueprint application
found in bundle org.apache.aries.jmx.blueprint.core/1.1.5
2017-05-31 09:23:37,669 | DEBUG | pool-2-thread-1  |
InfoBundleTrackerCustomizer      | 41 - org.apache.karaf.shell.commands -
4.0.9 | Ignore incorrect info null provided by bundle
org.apache.aries.jmx.blueprint.core
2017-05-31 09:23:37,669 | DEBUG | pool-2-thread-1  | core                            
| 16 - org.apache.aries.jmx.blueprint.core - 1.1.5 | BundleEvent STARTED -
org.apache.aries.jmx.blueprint.core
2017-05-31 09:23:37,670 | INFO  | pool-2-thread-1  | FeaturesServiceImpl             
| 8 - org.apache.karaf.features.core - 4.0.9 |  
org.apache.aries.jmx.core/1.1.7
2017-05-31 09:23:37,670 | DEBUG | pool-2-thread-1  | core                            
| 17 - org.apache.aries.jmx.core - 1.1.7 | BundleEvent STARTING -
org.apache.aries.jmx.core
2017-05-31 09:23:37,672 | DEBUG | pool-2-thread-1  | core                            
| 17 - org.apache.aries.jmx.core - 1.1.7 | ServiceEvent REGISTERED -
[org.osgi.service.cm.ManagedService] - org.apache.aries.jmx.core
2017-05-31 09:23:37,672 | DEBUG | pool-2-thread-1  | core                            
| 17 - org.apache.aries.jmx.core - 1.1.7 | Starting JMX OSGi bundle
2017-05-31 09:23:37,674 | INFO  | pool-2-thread-1  | core                            
| 17 - org.apache.aries.jmx.core - 1.1.7 | Starting JMX OSGi agent
2017-05-31 09:23:37,687 | INFO  | pool-2-thread-1  | core                            
| 17 - org.apache.aries.jmx.core - 1.1.7 | Registering MBean with ObjectName
[osgi.compendium:service=cm,version=1.3,framework=org.apache.felix.framework,uuid=fbcfe24b-a770-43eb-924a-8e58b4c10238]
for service with service.id [12]
2017-05-31 09:23:37,689 | DEBUG | pool-2-thread-1  | core                            
| 17 - org.apache.aries.jmx.core - 1.1.7 | Discovered MBean server
com.sun.jmx.mbeanserver.JmxMBeanServer@6979e8cb
2017-05-31 09:23:37,689 | INFO  | pool-2-thread-1  | core                            
| 17 - org.apache.aries.jmx.core - 1.1.7 | Registering
org.osgi.jmx.framework.BundleStateMBean to MBeanServer
com.sun.jmx.mbeanserver.JmxMBeanServer@6979e8cb with name
osgi.core:type=bundleState,version=1.7,framework=org.apache.felix.framework,uuid=fbcfe24b-a770-43eb-924a-8e58b4c10238
2017-05-31 09:23:37,690 | INFO  | pool-2-thread-1  | core                            
| 17 - org.apache.aries.jmx.core - 1.1.7 | Registering
org.osgi.jmx.service.cm.ConfigurationAdminMBean to MBeanServer
com.sun.jmx.mbeanserver.JmxMBeanServer@6979e8cb with name
osgi.compendium:service=cm,version=1.3,framework=org.apache.felix.framework,uuid=fbcfe24b-a770-43eb-924a-8e58b4c10238
2017-05-31 09:23:37,690 | INFO  | pool-2-thread-1  | core                            
| 17 - org.apache.aries.jmx.core - 1.1.7 | Registering
org.osgi.jmx.framework.ServiceStateMBean to MBeanServer
com.sun.jmx.mbeanserver.JmxMBeanServer@6979e8cb with name
osgi.core:type=serviceState,version=1.7,framework=org.apache.felix.framework,uuid=fbcfe24b-a770-43eb-924a-8e58b4c10238
2017-05-31 09:23:37,691 | INFO  | pool-2-thread-1  | core                            
| 17 - org.apache.aries.jmx.core - 1.1.7 | Registering
org.osgi.jmx.framework.FrameworkMBean to MBeanServer
com.sun.jmx.mbeanserver.JmxMBeanServer@6979e8cb with name
osgi.core:type=framework,version=1.7,framework=org.apache.felix.framework,uuid=fbcfe24b-a770-43eb-924a-8e58b4c10238
2017-05-31 09:23:37,691 | INFO  | pool-2-thread-1  | core                            
| 17 - org.apache.aries.jmx.core - 1.1.7 | Registering
org.osgi.jmx.framework.wiring.BundleWiringStateMBean to MBeanServer
com.sun.jmx.mbeanserver.JmxMBeanServer@6979e8cb with name
osgi.core:type=wiringState,version=1.1,framework=org.apache.felix.framework,uuid=fbcfe24b-a770-43eb-924a-8e58b4c10238
2017-05-31 09:23:37,691 | INFO  | pool-2-thread-1  | core                            
| 17 - org.apache.aries.jmx.core - 1.1.7 | Registering
org.osgi.jmx.framework.PackageStateMBean to MBeanServer
com.sun.jmx.mbeanserver.JmxMBeanServer@6979e8cb with name
osgi.core:type=packageState,version=1.5,framework=org.apache.felix.framework,uuid=fbcfe24b-a770-43eb-924a-8e58b4c10238
2017-05-31 09:23:37,691 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Scanning bundle
org.apache.aries.jmx.core/1.1.7 for blueprint application
2017-05-31 09:23:37,691 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | No blueprint application
found in bundle org.apache.aries.jmx.core/1.1.7
2017-05-31 09:23:37,692 | DEBUG | pool-2-thread-1  |
InfoBundleTrackerCustomizer      | 41 - org.apache.karaf.shell.commands -
4.0.9 | Ignore incorrect info null provided by bundle
org.apache.aries.jmx.core
2017-05-31 09:23:37,692 | DEBUG | pool-2-thread-1  | core                            
| 17 - org.apache.aries.jmx.core - 1.1.7 | BundleEvent STARTED -
org.apache.aries.jmx.core
2017-05-31 09:23:37,692 | INFO  | pool-2-thread-1  | FeaturesServiceImpl             
| 8 - org.apache.karaf.features.core - 4.0.9 |  
org.apache.karaf.jaas.blueprint.config/4.0.9
2017-05-31 09:23:37,692 | DEBUG | pool-2-thread-1  | config                          
| 32 - org.apache.karaf.jaas.blueprint.config - 4.0.9 | BundleEvent STARTING
- org.apache.karaf.jaas.blueprint.config
2017-05-31 09:23:37,692 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Scanning bundle
org.apache.karaf.jaas.blueprint.config/4.0.9 for blueprint application
2017-05-31 09:23:37,692 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Found blueprint application
in bundle org.apache.karaf.jaas.blueprint.config/4.0.9 with paths:
[OSGI-INF/blueprint/karaf-jaas.xml]
2017-05-31 09:23:37,693 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Starting creation of
blueprint bundle org.apache.karaf.jaas.blueprint.config/4.0.9 synchronously
2017-05-31 09:23:37,693 | DEBUG | pool-2-thread-1  | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle org.apache.karaf.jaas.blueprint.config/4.0.9 in state Unknown
2017-05-31 09:23:37,693 | DEBUG | pool-2-thread-1  | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Xml-validation directive:
null
2017-05-31 09:23:37,693 | DEBUG | pool-2-thread-1  |
BlueprintEventDispatcher         | 12 - org.apache.aries.blueprint.core -
1.7.1 | Sending blueprint container event BlueprintEvent[type=CREATING] for
bundle org.apache.karaf.jaas.blueprint.config/4.0.9
2017-05-31 09:23:37,693 | DEBUG | nt Dispatcher: 1 | BlueprintStateService           
| 22 - org.apache.karaf.bundle.blueprintstate - 4.0.9 | Blueprint app state
changed to Starting for bundle 32
2017-05-31 09:23:37,694 | DEBUG | pool-2-thread-1  | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle org.apache.karaf.jaas.blueprint.config/4.0.9 in state
WaitForNamespaceHandlers
2017-05-31 09:23:37,696 | DEBUG | pool-2-thread-1  | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle org.apache.karaf.jaas.blueprint.config/4.0.9 in state Populated
2017-05-31 09:23:37,696 | DEBUG | pool-2-thread-1  | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Tracking service
references: []
2017-05-31 09:23:37,696 | DEBUG | pool-2-thread-1  | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle org.apache.karaf.jaas.blueprint.config/4.0.9 in state
WaitForInitialReferences
2017-05-31 09:23:37,696 | DEBUG | pool-2-thread-1  | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle org.apache.karaf.jaas.blueprint.config/4.0.9 in state
InitialReferencesSatisfied
2017-05-31 09:23:37,696 | DEBUG | pool-2-thread-1  | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle org.apache.karaf.jaas.blueprint.config/4.0.9 in state
WaitForInitialReferences2
2017-05-31 09:23:37,696 | DEBUG | pool-2-thread-1  | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle org.apache.karaf.jaas.blueprint.config/4.0.9 in state Create
2017-05-31 09:23:37,697 | DEBUG | pool-2-thread-1  | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Instantiating components:
[blueprintContainer, blueprintBundle, blueprintBundleContext,
blueprintConverter, namespaceHandler, .component-1, .component-2]
2017-05-31 09:23:37,698 | DEBUG | pool-2-thread-1  | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Retrieving service for
bundle null and service registration null
2017-05-31 09:23:37,698 | DEBUG | pool-2-thread-1  | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Creating service instance
2017-05-31 09:23:37,698 | DEBUG | pool-2-thread-1  | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Service created:
org.apache.karaf.jaas.blueprint.config.impl.NamespaceHandler@280d35f8
2017-05-31 09:23:37,698 | DEBUG | pool-2-thread-1  | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Retrieving service for
bundle null and service registration null
2017-05-31 09:23:37,698 | DEBUG | pool-2-thread-1  | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Creating service instance
2017-05-31 09:23:37,698 | DEBUG | pool-2-thread-1  | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Service created:
org.apache.karaf.jaas.blueprint.config.impl.NamespaceHandler@280d35f8
2017-05-31 09:23:37,698 | DEBUG | pool-2-thread-1  | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Registering service
.component-1 with interfaces [org.apache.aries.blueprint.NamespaceHandler]
and properties {osgi.service.blueprint.compname=namespaceHandler,
osgi.service.blueprint.namespace=http://karaf.apache.org/xmlns/jaas/v1.0.0}
2017-05-31 09:23:37,699 | DEBUG | pool-2-thread-1  |
NamespaceHandlerRegistryImpl     | 12 - org.apache.aries.blueprint.core -
1.7.1 | Adding NamespaceHandler
[org.apache.aries.blueprint.NamespaceHandler]
2017-05-31 09:23:37,699 | DEBUG | pool-2-thread-1  | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Retrieving service for
bundle org.apache.aries.blueprint.core [12] and service registration
org.apache.felix.framework.ServiceRegistrationImpl@1656f07
2017-05-31 09:23:37,699 | DEBUG | pool-2-thread-1  | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Method entry: getService,
args org.apache.karaf.jaas.blueprint.config.impl.NamespaceHandler@280d35f8
2017-05-31 09:23:37,701 | DEBUG | pool-2-thread-1  | config                          
| 32 - org.apache.karaf.jaas.blueprint.config - 4.0.9 | ServiceEvent
REGISTERED - [org.apache.aries.blueprint.NamespaceHandler] -
org.apache.karaf.jaas.blueprint.config
2017-05-31 09:23:37,702 | DEBUG | pool-2-thread-1  | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Registering service
.component-2 with interfaces [org.apache.aries.blueprint.NamespaceHandler]
and properties {osgi.service.blueprint.compname=namespaceHandler,
osgi.service.blueprint.namespace=http://karaf.apache.org/xmlns/jaas/v1.1.0}
2017-05-31 09:23:37,702 | DEBUG | pool-2-thread-1  |
NamespaceHandlerRegistryImpl     | 12 - org.apache.aries.blueprint.core -
1.7.1 | Adding NamespaceHandler
[org.apache.aries.blueprint.NamespaceHandler]
2017-05-31 09:23:37,702 | DEBUG | pool-2-thread-1  | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Retrieving service for
bundle org.apache.aries.blueprint.core [12] and service registration
org.apache.felix.framework.ServiceRegistrationImpl@1de30193
2017-05-31 09:23:37,702 | DEBUG | pool-2-thread-1  | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Method entry: getService,
args org.apache.karaf.jaas.blueprint.config.impl.NamespaceHandler@280d35f8
2017-05-31 09:23:37,703 | DEBUG | pool-2-thread-1  | config                          
| 32 - org.apache.karaf.jaas.blueprint.config - 4.0.9 | ServiceEvent
REGISTERED - [org.apache.aries.blueprint.NamespaceHandler] -
org.apache.karaf.jaas.blueprint.config
2017-05-31 09:23:37,704 | DEBUG | pool-2-thread-1  | config                          
| 32 - org.apache.karaf.jaas.blueprint.config - 4.0.9 | ServiceEvent
REGISTERED - [org.osgi.service.blueprint.container.BlueprintContainer] -
org.apache.karaf.jaas.blueprint.config
2017-05-31 09:23:37,704 | DEBUG | pool-2-thread-1  |
BlueprintEventDispatcher         | 12 - org.apache.aries.blueprint.core -
1.7.1 | Sending blueprint container event BlueprintEvent[type=CREATED] for
bundle org.apache.karaf.jaas.blueprint.config/4.0.9
2017-05-31 09:23:37,704 | DEBUG | nt Dispatcher: 1 | BlueprintStateService           
| 22 - org.apache.karaf.bundle.blueprintstate - 4.0.9 | Blueprint app state
changed to Active for bundle 32
2017-05-31 09:23:37,705 | DEBUG | pool-2-thread-1  | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle org.apache.karaf.jaas.blueprint.config/4.0.9 in state Created
2017-05-31 09:23:37,705 | DEBUG | pool-2-thread-1  |
InfoBundleTrackerCustomizer      | 41 - org.apache.karaf.shell.commands -
4.0.9 | Ignore incorrect info null provided by bundle
org.apache.karaf.jaas.blueprint.config
2017-05-31 09:23:37,705 | DEBUG | pool-2-thread-1  | config                          
| 32 - org.apache.karaf.jaas.blueprint.config - 4.0.9 | BundleEvent STARTED
- org.apache.karaf.jaas.blueprint.config
2017-05-31 09:23:37,705 | INFO  | pool-2-thread-1  | FeaturesServiceImpl             
| 8 - org.apache.karaf.features.core - 4.0.9 |  
org.apache.karaf.jaas.command/4.0.9
2017-05-31 09:23:37,705 | DEBUG | pool-2-thread-1  | command                         
| 33 - org.apache.karaf.jaas.command - 4.0.9 | BundleEvent STARTING -
org.apache.karaf.jaas.command
2017-05-31 09:23:37,705 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Scanning bundle
org.apache.karaf.jaas.command/4.0.9 for blueprint application
2017-05-31 09:23:37,705 | DEBUG | pool-2-thread-1  | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | No blueprint application
found in bundle org.apache.karaf.jaas.command/4.0.9
2017-05-31 09:23:37,706 | DEBUG | pool-2-thread-1  |
InfoBundleTrackerCustomizer      | 41 - org.apache.karaf.shell.commands -
4.0.9 | Ignore incorrect info null provided by bundle
org.apache.karaf.jaas.command
2017-05-31 09:23:37,706 | DEBUG | pool-2-thread-1  | CommandExtender                 
| 43 - org.apache.karaf.shell.core - 4.0.9 | org.apache.karaf.jaas.command
(33): Starting extension synchronously
2017-05-31 09:23:37,720 | INFO  | pool-2-thread-1  | CommandExtension                
| 43 - org.apache.karaf.shell.core - 4.0.9 | Registering commands for bundle
org.apache.karaf.jaas.command/4.0.9
2017-05-31 09:23:37,721 | INFO  | pool-2-thread-1  | CommandExtension                
| 43 - org.apache.karaf.shell.core - 4.0.9 | Updating commands for bundle
org.apache.karaf.jaas.command/4.0.9
2017-05-31 09:23:37,722 | INFO  | pool-2-thread-1  | CommandExtension                
| 43 - org.apache.karaf.shell.core - 4.0.9 | Updating commands for bundle
org.apache.karaf.jaas.command/4.0.9
2017-05-31 09:23:37,723 | DEBUG | pool-2-thread-1  | command                         
| 33 - org.apache.karaf.jaas.command - 4.0.9 | BundleEvent STARTED -
org.apache.karaf.jaas.command
2017-05-31 09:23:37,725 | INFO  | pool-2-thread-1  | FeaturesServiceImpl             
| 8 - org.apache.karaf.features.core - 4.0.9 | Done.
2017-05-31 09:23:37,727 | DEBUG | pool-1-thread-2  | core                            
| 8 - org.apache.karaf.features.core - 4.0.9 | ServiceEvent REGISTERED -
[org.apache.karaf.features.BootFinished] - org.apache.karaf.features.core
2017-05-31 09:23:37,800 | DEBUG | Finalizer        |
olingHttpClientConnectionManager | 7 - org.ops4j.pax.url.mvn - 2.5.2 |
Connection manager is shutting down
2017-05-31 09:23:37,800 | DEBUG | Finalizer        |
olingHttpClientConnectionManager | 7 - org.ops4j.pax.url.mvn - 2.5.2 |
Connection manager shut down
2017-05-31 09:23:37,806 | INFO  | raf-4.0.9/deploy | fileinstall                     
| 4 - org.apache.felix.fileinstall - 3.5.8 | Installing bundle
ldap-module.xml / 0.0.0
2017-05-31 09:23:37,809 | DEBUG | raf-4.0.9/deploy | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Starting BlueprintContainer
destruction process for bundle ldap-module.xml/0.0.0
2017-05-31 09:23:37,809 | DEBUG | raf-4.0.9/deploy | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Not a blueprint bundle or
destruction of BlueprintContainer already finished for
ldap-module.xml/0.0.0.
2017-05-31 09:23:37,809 | DEBUG | raf-4.0.9/deploy | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Starting BlueprintContainer
destruction process for bundle ldap-module.xml/0.0.0
2017-05-31 09:23:37,809 | DEBUG | raf-4.0.9/deploy | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Not a blueprint bundle or
destruction of BlueprintContainer already finished for
ldap-module.xml/0.0.0.
2017-05-31 09:23:37,809 | DEBUG | raf-4.0.9/deploy | CommandExtender                 
| 43 - org.apache.karaf.shell.core - 4.0.9 | ldap-module.xml (52): Starting
destruction process
2017-05-31 09:23:37,809 | DEBUG | raf-4.0.9/deploy | CommandExtender                 
| 43 - org.apache.karaf.shell.core - 4.0.9 | ldap-module.xml (52): Not an
extended bundle or destruction of extension already finished
2017-05-31 09:23:37,809 | DEBUG | raf-4.0.9/deploy | xml                             
| 52 - ldap-module.xml - 0.0.0 | BundleEvent INSTALLED - ldap-module.xml
2017-05-31 09:23:37,820 | DEBUG | lixDispatchQueue | framework                       
| 0 - org.apache.felix.framework - 5.6.2 | FrameworkEvent PACKAGES REFRESHED
- org.apache.felix.framework
2017-05-31 09:23:37,821 | DEBUG | raf-4.0.9/deploy | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Starting BlueprintContainer
destruction process for bundle ldap-module.xml/0.0.0
2017-05-31 09:23:37,821 | DEBUG | raf-4.0.9/deploy | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Not a blueprint bundle or
destruction of BlueprintContainer already finished for
ldap-module.xml/0.0.0.
2017-05-31 09:23:37,821 | DEBUG | raf-4.0.9/deploy | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Starting BlueprintContainer
destruction process for bundle ldap-module.xml/0.0.0
2017-05-31 09:23:37,822 | DEBUG | raf-4.0.9/deploy | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Not a blueprint bundle or
destruction of BlueprintContainer already finished for
ldap-module.xml/0.0.0.
2017-05-31 09:23:37,822 | DEBUG | raf-4.0.9/deploy | CommandExtender                 
| 43 - org.apache.karaf.shell.core - 4.0.9 | ldap-module.xml (52): Starting
destruction process
2017-05-31 09:23:37,822 | DEBUG | raf-4.0.9/deploy | CommandExtender                 
| 43 - org.apache.karaf.shell.core - 4.0.9 | ldap-module.xml (52): Not an
extended bundle or destruction of extension already finished
2017-05-31 09:23:37,822 | DEBUG | raf-4.0.9/deploy | xml                             
| 52 - ldap-module.xml - 0.0.0 | BundleEvent RESOLVED - ldap-module.xml
2017-05-31 09:23:37,822 | DEBUG | raf-4.0.9/deploy | xml                             
| 52 - ldap-module.xml - 0.0.0 | BundleEvent STARTING - ldap-module.xml
2017-05-31 09:23:37,822 | DEBUG | raf-4.0.9/deploy | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Scanning bundle
ldap-module.xml/0.0.0 for blueprint application
2017-05-31 09:23:37,823 | DEBUG | raf-4.0.9/deploy | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Found blueprint application
in bundle ldap-module.xml/0.0.0 with paths:
[bundle://52.0:0/OSGI-INF/blueprint/ldap-module.xml]
2017-05-31 09:23:37,825 | DEBUG | raf-4.0.9/deploy | BlueprintExtender               
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Starting creation of
blueprint bundle ldap-module.xml/0.0.0 synchronously
2017-05-31 09:23:37,826 | DEBUG | raf-4.0.9/deploy | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle ldap-module.xml/0.0.0 in state Unknown
2017-05-31 09:23:37,826 | DEBUG | raf-4.0.9/deploy | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Xml-validation directive:
null
2017-05-31 09:23:37,826 | DEBUG | raf-4.0.9/deploy |
BlueprintEventDispatcher         | 12 - org.apache.aries.blueprint.core -
1.7.1 | Sending blueprint container event BlueprintEvent[type=CREATING] for
bundle ldap-module.xml/0.0.0
2017-05-31 09:23:37,826 | DEBUG | nt Dispatcher: 1 | BlueprintStateService           
| 22 - org.apache.karaf.bundle.blueprintstate - 4.0.9 | Blueprint app state
changed to Starting for bundle 52
2017-05-31 09:23:37,833 | WARN  | raf-4.0.9/deploy |
NamespaceHandlerRegistryImpl     | 12 - org.apache.aries.blueprint.core -
1.7.1 | NamespaceHandler
org.apache.karaf.jaas.blueprint.config.impl.NamespaceHandler is behaving
badly and should be fixed
2017-05-31 09:23:37,833 | DEBUG | raf-4.0.9/deploy | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle ldap-module.xml/0.0.0 in state WaitForNamespaceHandlers
2017-05-31 09:23:37,849 | DEBUG | raf-4.0.9/deploy | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle ldap-module.xml/0.0.0 in state Populated
2017-05-31 09:23:37,849 | DEBUG | raf-4.0.9/deploy | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Tracking service
references: []
2017-05-31 09:23:37,849 | DEBUG | raf-4.0.9/deploy | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle ldap-module.xml/0.0.0 in state WaitForInitialReferences
2017-05-31 09:23:37,850 | DEBUG | raf-4.0.9/deploy | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle ldap-module.xml/0.0.0 in state InitialReferencesSatisfied
2017-05-31 09:23:37,850 | DEBUG | raf-4.0.9/deploy | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle ldap-module.xml/0.0.0 in state WaitForInitialReferences2
2017-05-31 09:23:37,850 | DEBUG | raf-4.0.9/deploy | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle ldap-module.xml/0.0.0 in state Create
2017-05-31 09:23:37,850 | DEBUG | raf-4.0.9/deploy | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Instantiating components:
[blueprintContainer, blueprintBundle, blueprintBundleContext,
blueprintConverter, karaf]
2017-05-31 09:23:37,850 | DEBUG | raf-4.0.9/deploy | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Retrieving service for
bundle null and service registration null
2017-05-31 09:23:37,850 | DEBUG | raf-4.0.9/deploy | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Creating service instance
2017-05-31 09:23:37,851 | DEBUG | raf-4.0.9/deploy | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Service created:
org.apache.karaf.jaas.config.impl.Config@23520975
2017-05-31 09:23:37,852 | DEBUG | raf-4.0.9/deploy | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Registering service karaf
with interfaces [org.apache.karaf.jaas.config.JaasRealm] and properties
{org.apache.karaf.jaas.module=karaf}
2017-05-31 09:23:37,852 | DEBUG | raf-4.0.9/deploy | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Retrieving service for
bundle org.apache.karaf.jaas.config [34] and service registration
org.apache.felix.framework.ServiceRegistrationImpl@633ae927
2017-05-31 09:23:37,852 | DEBUG | raf-4.0.9/deploy | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Method entry: getService,
args org.apache.karaf.jaas.config.impl.Config@23520975
2017-05-31 09:23:37,853 | DEBUG | raf-4.0.9/deploy | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Retrieving service for
bundle org.apache.karaf.jaas.command [33] and service registration
org.apache.felix.framework.ServiceRegistrationImpl@633ae927
2017-05-31 09:23:37,853 | DEBUG | raf-4.0.9/deploy | ServiceRecipe                   
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Method entry: getService,
args org.apache.karaf.jaas.config.impl.Config@23520975
2017-05-31 09:23:37,853 | INFO  | raf-4.0.9/deploy | CommandExtension                
| 43 - org.apache.karaf.shell.core - 4.0.9 | Updating commands for bundle
org.apache.karaf.jaas.command/4.0.9
2017-05-31 09:23:37,854 | DEBUG | raf-4.0.9/deploy | xml                             
| 52 - ldap-module.xml - 0.0.0 | ServiceEvent REGISTERED -
[org.apache.karaf.jaas.config.JaasRealm] - ldap-module.xml
2017-05-31 09:23:37,854 | DEBUG | raf-4.0.9/deploy | xml                             
| 52 - ldap-module.xml - 0.0.0 | ServiceEvent REGISTERED -
[org.osgi.service.blueprint.container.BlueprintContainer] - ldap-module.xml
2017-05-31 09:23:37,855 | DEBUG | raf-4.0.9/deploy |
BlueprintEventDispatcher         | 12 - org.apache.aries.blueprint.core -
1.7.1 | Sending blueprint container event BlueprintEvent[type=CREATED] for
bundle ldap-module.xml/0.0.0
2017-05-31 09:23:37,855 | DEBUG | nt Dispatcher: 1 | BlueprintStateService           
| 22 - org.apache.karaf.bundle.blueprintstate - 4.0.9 | Blueprint app state
changed to Active for bundle 52
2017-05-31 09:23:37,855 | DEBUG | raf-4.0.9/deploy | BlueprintContainerImpl          
| 12 - org.apache.aries.blueprint.core - 1.7.1 | Running blueprint container
for bundle ldap-module.xml/0.0.0 in state Created
2017-05-31 09:23:37,855 | DEBUG | raf-4.0.9/deploy |
InfoBundleTrackerCustomizer      | 41 - org.apache.karaf.shell.commands -
4.0.9 | Ignore incorrect info null provided by bundle ldap-module.xml
2017-05-31 09:23:37,855 | DEBUG | raf-4.0.9/deploy | xml                             
| 52 - ldap-module.xml - 0.0.0 | BundleEvent STARTED - ldap-module.xml
2017-05-31 09:23:37,855 | INFO  | raf-4.0.9/deploy | fileinstall                     
| 4 - org.apache.felix.fileinstall - 3.5.8 | Started bundle:
blueprint:file:/Users/andyphillips404/Documents/Development/apache-karaf-4.0.9/deploy/ldap-module.xml
2017-05-31 09:23:41,473 | DEBUG | nsole user karaf |
LoggingCommandSessionListener    | 43 - org.apache.karaf.shell.core - 4.0.9
| Executing command: 'jaas:realm-manage --index 1'
2017-05-31 09:23:41,478 | DEBUG | nsole user karaf |
LoggingCommandSessionListener    | 43 - org.apache.karaf.shell.core - 4.0.9
| Command: 'jaas:realm-manage --index 1' returned 'null'
2017-05-31 09:23:44,555 | DEBUG | nsole user karaf |
LoggingCommandSessionListener    | 43 - org.apache.karaf.shell.core - 4.0.9
| Executing command: 'jaas:user-list'
2017-05-31 09:23:44,559 | DEBUG | nsole user karaf |
LoggingCommandSessionListener    | 43 - org.apache.karaf.shell.core - 4.0.9
| Command: 'jaas:user-list' returned 'null'
2017-05-31 09:23:47,105 | DEBUG | nsole user karaf |
LoggingCommandSessionListener    | 43 - org.apache.karaf.shell.core - 4.0.9
| Executing command: 'log:display'





--
View this message in context: http://karaf.922171.n3.nabble.com/Unable-to-get-jaas-LDAP-working-on-Karaf-4-0-9-tp4050510p4050511.html
Sent from the Karaf - User mailing list archive at Nabble.com.