Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- create table
- Materials
- perfect
- PYTHON
- ftp
- nGrinder
- port forwarding
- ssh
- appium server
- kitura
- openpyxl
- Jupyter
- 28015
- mysql
- GoCD
- nohup
- insert
- nmap
- 실행권한
- STF_PortForwarding
- SWIFT
- postgresql
- rethinkdb
- Jupyter Notebook
- centos
- sshpass
- appium
- ubuntu
- STF
- postgres
Archives
- Today
- Total
don't stop believing
LDAP Client 설치 (on CentOS) 본문
앞서 ldap server를 설치했는데요, 클라이언트도 설치해서 연결하는 걸 해보겠습니다.
http://dejavuqa.tistory.com/264
앞서 설치한 ldap server IP는 10.10.1.168 이었습니다.
이제 다른 서버(10.10.1.167)에 ldap client를 설치하고 연결해 보겠습니다.
ldap client를 설치합니다.
$ sudo yum -y update $ sudo yum install -y openldap-clients nss-pam-ldapd
ldap client가 설치되었다면 ldap server와 연결합니다.
authconfig 명령의 --ldapserver에 server IP를 넣습니다.
$ sudo authconfig --enableldap --enableldapauth --ldapserver=10.10.1.168 --ldapbasedn="dc=ngle,dc=co,dc=kr" --enablemkhomedir --update
실행 후 ldap clinet를 재시작해줍니다.
$ sudo systemctl restart nslcd
getent 명령으로 ldap server에서 tongchun의 정보를 확인합니다.
$ sudo getent passwd tongchun tongchun:x:9999:100:tongchun [Admin (at) nGle]:/home/tongchun:/bin/bash
일단은 여기까지 입니다.
'Tools > LDAP & CAS' 카테고리의 다른 글
OpenLDAP + phpLDAPAdmin 설치 (on Ubuntu) (1) | 2019.03.26 |
---|---|
LDAP Server 설치 (on CentOS) (1) | 2018.10.12 |
CAS 서버 설치 (on CentOS) (0) | 2018.10.11 |
Comments