Archives for Linux - Page 11
Dumping MySQL Stored Procedures, Functions and Triggers
When you run mysqldump , by default it will not export your procedures or function , if you want to include these info , you need to add –routines...
Command to find CPU usage in Linux
There are 3 commands that we can use sar top mpstats You may need to install sysstat package to use these commands : apt-get install sysstat If you install...
Php: Temp upload files not deleted
Today, my server is out of disk and i see there are lot of files in /tmp , their names are phpXXXX , i know theseĀ files are uploaded...
child pid XXXX exit signal File size limit exceeded (25) on apache log
Today I found that Apache on my server was very slow and a lot of child pid xxxx exit signal File size limit exceeded (25) errors in error_log. It...
How to search large files on linux
You can use this command to search for files larger than 20MB on your linux box , change the number to meet your needs find / -type f -size...