Posts tagged with ‘log’

 

  • Archives

  • Categories

I haven’t been generous enough to spend money on higher RAM for my blogs. I started to notice slow downs in the blog recent, particularly caused by a particular plugin that does related posts. I found out by checking on slow queries log. Here’s how to get MySQL to log slow queries:

If you are using Ubuntu of Debian-based operating systems, it’s found in /etc/mysql/my.cnf. You may need to use

sudo nano /etc/mysql/my.cnf

Press CTRL + W, that’s search in nano. Find “slow” for the section for logging slow queries.

# Here you can see queries with especially long duration
#log_slow_queries        = /var/log/mysql/mysql-slow.log
#long_query_time = 2
#log-queries-not-using-indexes

I uncommented “log_slow_queries” and “long_query_time”. I put long_query_time to 8. That requires a bit of experimentation. It depends on your environment.

I run the following command to check the slow queries:

sudo cat /var/log/mysql/mysql-slow.log

After you change the configuration in my.cnf, you need to restart. You can do so using:

sudo /etc/init.d/mysql restart

Hope it helps.

 

This is what happens if you don’t clear your Apache logs:

jr ~/i.justrealized.com/log: ls -al
total 205748
drwxr-s— 2 me     www-data      4096 Aug  5  2008 .
drwxr-s— 8 me     www-data      4096 Sep  9 14:58 ..
-rw-r–r– 1 root   www-data 210250161 Feb 21 17:08 access.log
-rw-r–r– 1 root   www-data    205822 Feb 21 15:49 error.log

That’s 210 MB of data I am least interested with. By the way I just realized delete the log actually lowers memory usage significantly.

 

Okay, I realized this long ago but it annoys me that every time I just forget this. Sometime, when debugging CakePHP, the most direct method is to simply log an error. It’s like ‘trace’ in Actionscript or just a println() in Java. Anyway, here it is:

$this->log("Log anything here.");

This can be called from the controller. (more…)

 

WordPress powered and Django inspired.
Love and elephants come after.
RSS: Posts and comments.