Starting with OpenLDAP

Starting with OpenLDAP 1. Install OpenLDAP on Ubuntu2. apt-get install slapd ldap-utils gq db4.8-util db4.8-doc jxplorer3. Create slapd.conf /usr/share/slapd/slapd.conf or whereever you want only thing it should be readable. Change domain components and admin password, dn as per your requirement4. Please check apparmor is off5. Please check /var/run/slapd directory is there or not. If yes…

Setting up NGINX, PHP with CGI on Ubuntu 10.10 Linux

1. Installing apt-get install nginx php5 php5-cgi php5-cli 2. Make your site folder under document root mkdir -p /var/www/newsitechown -R www-data www-data /var/www/ 3. Create new file /etc/nginx/sites-available/newsite and put below entries in it server { listen 80; server_name newsite.com www.newsite.com; access_log /var/logs/nginx/access.log; error_log /var/logs/nginx/error.log; location / { root /var/www/newsite; index index.html index.htm index.php; }…