本文共 1047 字,大约阅读时间需要 3 分钟。
yum -y install openldap openldap-clients openldap-servers
vi /etc/openldap/ldap.conf
没有特许修改用默认值就行,默认slapd使用389端口。
防火墙开放端口
firewall-cmd --zone=public --add-port=389/tcp --permanent
firewall-cmd --reload #更新规则
LDAP Account Manager
解压缩 ldap-account-manager-6.2.tar.bz2tar -jxvf ldap-account-manager-6.2.tar.bz2
发现没有安装bzip2
yum -y instal bzip2安装后再解压缩即可
cd ldap-account-manager-6.2
./configure然后会生成一个Makefile,注意修改makefile中的user和php-fpm一致grep -w "user =" /etc/php-fpm.d/www.confmake install
cd /usr/local/lam/configcp config.cfg.sample config.cfg配置nginx php fastcgi。
vi /etc/nginx/conf.d/lam.conf
注意lam的安装目录是/usr/local/lam
location / {index index.html;alias /usr/share/lam;autoindex off;location ~ \.php$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php7-fpm.sock; fastcgi_index index.php; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $request_filename;}location ~ /(tmp/internal|sess|config|lib|help|locale) { deny all; return 403;}
}
转载地址:http://uzlxx.baihongyu.com/