• support[@]kurinchilion.com
  • +1 (888) 666-4252

Blog

Ubuntu: Configuring Virtual Hosts to listen on different ports

Mar 05, 2010 - by kurinchilamp // 378 Views
Files to check - /etc/apache2/ports.conf - /etc/apache2/apache2.conf Consider the ServerName to be "myserver". Check /etc/hosts for an entry 127.0.0.1 localhost 192.168.1.100 myserver.com myserver ... (more…)
Continue Reading

MySQL Clear Screen Window

Mar 01, 2010 - by kurinchilamp // 339 Views
To clear the screen content in MySQL use the command mysql> \! clear Usage of "\!" tells MySQL to pass the command to Linux OS to handle the request. If you are in a Windows environment (DOS prompt), to pass the control to the OS you can use the command mysql>system cls
Continue Reading

Ubuntu: Where to find Apache Error log?

Feb 10, 2010 - by kurinchilamp // 435 Views
Location where the Apache error log entries can be found in Ubuntu user@server:~# less /var/log/apache2/error.log
Continue Reading

MySQL: Can’t connect to local MySQL server through socket ‘/var/run/mysqld/mysqld.sock’

Feb 05, 2010 - by kurinchilamp /MySql/ 374 Views
Reason why this error might occur: i) Incomplete MySQL implementation ii) MySQL setting mis-configuration Solution: root@myserver:/# vi /etc/mysql/my.cnf Comment out the below line in my.cnf file to make MySQL listen on ALL interfaces #bind-address = 127.0.0.1 root@myserver:/# netstat -tap | grep mysql tcp 0 0 *:mysql *:* LISTEN 17785/mysqld Note that above line which indicates MySQL listening on all interfaces.
Continue Reading

SSL Error: Revocation information for the security certificate for this site is not available.

Feb 03, 2010 - by kurinchilamp // 444 Views
SSL Error: Revocation information for the security certificate for this site is not available. Do you want to proceed? Solutions: i) Install the root CA under Trusted Certificate Authority or, ii) Add an exception to the browser filter not to check certificate revocation or, iii) Programatically handle the SSL stream when request is made from the server
Continue Reading

Choosing version control system (VCS): Git vs Subversion

Feb 01, 2010 - by kurinchilamp // 424 Views
Git - Distributed repository system (adaptive work flow models) - Source control taxonomy: DAG storage - URI to git directory is where the repository is stored and it always has branches and tags - Repository root folder contains a .git directory which maintains file history - Scalability - Faster, Efficient branching and merging - License: Copyleft Subversion (SVN) - Centralized repository system - Source control taxonomy: Delta storage - URI to a subversion depository most commonly adopts /trunks, /branches and /tags directories - Each folder maintains a .svn directory to store the file history - Not efficient in scaling - Not efficient in branching and merging - License: Copyfree
Continue Reading

TECHNOLOGY DEV STACK

Following are some of the technologies that we use to build and maintain solutions for our clients.