jump to navigation

Finding web developers in Montreal: a daunting task? August 28, 2008

People in Montreal may not have recently asked the question: can you find a good web developer locally? The answer to this question is a resounding yes… and no.

apache crashes due to high traffic

Although this wasn’t actually the all time solution, i’ll just post this to have a bit of solution to this problem. I used this due to some of the few reasons.

  1. there are too much waiting http requests that apache is queueing up and ends up to a crash.

how to dump mysql database from command line

From shell:

mysqldump -h localhost databasename > filename.sql

if you need to enter a password:

mysqldump -h localhost -p databasename > filename.sql

databasename is the name of the database you want to dump filename.sql will be the target fila of the dumped database