2016-06-20 7 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

를 사용하는 경우 NFS 다음은 내가/메시지 폴더를 /은/var을에서 볼 로그인 할 수있는 오류 메시지입니다 CentOS는 7 집의 공유 폴더에 설치되지 않습니다. LDAP 서버에 바인드하지 못했습니다. ldap : // xxxx : LDAP 서버에 연결할 수 없습니다. bind_ldap_simple : lookup (ldap) : LDAP 서버에 바인드 할 수 없습니다 (기본값), 오류 LDAP 서버에 연결할 수 없습니다. <그룹/member = "gdm"> LDAP 서버에 바인드하지 못했습니다. ldap : // XXXX : LDAP 서버에 연결할 수 없습니다. LDAP 서버에 바인드하지 못했습니다. LDAP 서버에 문의하십시오. – sangamesh

답변

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