2016-06-20 12 views
0
 
These are the error messages that I can see in /var/log/messages folder: 

    failed to bind to LDAP server ldap://x.x.x.x: Can't contact LDAP server 
    bind_ldap_simple: lookup(ldap): Unable to bind to the LDAP server: (default), error Can't contact LDAP server 
    failed to bind to LDAP server ldap://X.X.X.X: Can't contact LDAP server 
    failed to bind to LDAP server ldap://X.X.X.X: Can't contact LDAP server 
+0

Dies sind die Fehlermeldungen, die ich in/var sehen/log/messages Ordner. konnte nicht an LDAP-Server gebunden werden ldap: // xxxx: LDAP-Server konnte nicht kontaktiert werden bind_ldap_simple: lookup (ldap): Bindung an den LDAP-Server nicht möglich: (Standard), Fehler LDAP-Server kann nicht kontaktiert werden konnte nicht an LDAP-Server gebunden werden ldap: // XXXX: LDAP-Server konnte nicht kontaktiert werden konnte nicht an den LDAP-Server binden ldap: // XXXX: Can not Kontakt LDAP-Server – sangamesh

Antwort

0
I had to enable NetworkManager-wait-online service by executing the command below 

    systemctl enable NetworkManager-wait-online.service 

Then I had to change timeout in 
/usr/lib/systemd/system/NetworkManager-wait-online.service file. 
I set the timeout to 60 seconds and it worked for me. 
I am listing the modified file with changed timeout below. 

    [Unit] 
    Description=Network Manager Wait Online 
    Requisite=NetworkManager.service 
    After=NetworkManager.service 
    Wants=network.target 
    Before=network.target network-online.target 

    [Service] 
    Type=oneshot 
    ExecStart=/usr/bin/nm-online -s -q --timeout=60 

    [Install] 
    WantedBy=multi-user.target