Category: Apache

  • Configure apache solr with tomcat

    Install tomcat $ sudo yum install tomcat6 Download and extract apache solr : http://lucene.apache.org/solr/ $ cp apache-solr-3.6.2.war /var/lib/tomcat6/webapps/solr.war $ cp -r /data/apache-solr-3.6.2/example/solr /var/lib/tomcat6/ $ cat /etc/tomcat6/Catalina/localhost/solr.xml $ chown -R tomcat: /var/lib/tomcat6/solr/ $ sudo service tomcat6 restart Access url : http://<server_name/ip>:8080/solr/admin

  • Create CSR and implement in apache

    These steps are used to generate a CSR to get the SSL certificate signed with verisign. The filenames used are just examples. $ /usr/bin/openssl genrsa -rand /dev/urandom -out <web_root>/domain_name.key 2048 $ /usr/bin/openssl req -new -key <web_root>/domain_name.key -out <web_root>/domain_name.csr Country Name (2 letter code) [GB]: State or Province Name (full name) [Berkshire]: Locality Name (eg, city)…

  • Racktable, Apache+LDAP authentication

    Login to the Rack tables as admin: Add the following line under configuration–> permission allow {$tab_default} * This is for read only account, assign extra permissions if required Configure Apache + LDAP < Directory /var/www/racktables > Options +Indexes FollowSymLinks MultiViews DirectoryIndex index.php AuthName “Rack Tables” AuthType Basic AuthBasicProvider ldap AuthzLDAPAuthoritative on AuthLDAPURL “ldaps://ldaphost.com/dc=company,dc=com?uid?sub?(objectClass=< depends_on_ldap >)”…

  • Enable IPv6 on Linux (2010)

    IPv6 is the future of internet addressing, and Linux, with its robust kernel support, makes it remarkably easy to enable IPv6 on your system. In this guide, we’ll explore the process of setting up IPv6 on a Linux system, with a focus on Red Hat Linux. However, the principles and steps discussed here are applicable…