Looking for a dedicated hosting solution with 24/7/365 U.S.-based, English speaking phone support? Visit Rackspace for a reliable, managed hosting solution that will let you focus on the bottom line - your business, while they make sure your website stays online.
Big Stock Photo offers nearly 3 million stock photos to choose from - royalty free, starting at $1 per photo. We're able to extend 5 free photo credits to our visitors for a limited time. Click here and use promo code DIR5XM2 when you sign up.
It can be handy to use a cron job (a process that executes at a specified interval and repeats) to perform MySQL tasks. In particular, we're going to look at how to use a cron job to execute MySQL functions.
In our example, we've deployed a Drupal site that is still running the old 4.7.x version. Due to a high traffic load, we have the site's chaching mechanism turned on. The problem is, unlike in Drupal's 5.x version, the cache table seems to grow out of control. Because internal Drupal functions aren't working as they should, we're going to access our MySQL database directly to truncate the cache table periodically. In this case, every day.
To setup a cron tab, you can access your Apache server via shell, or you can log into cPanel, as in our example, and select Cron Jobs. We select the Advanced (Unix Style) cron interface, and then proceed to select a timeframe for the cron job to execute. 0 0 * * * will have the cron job execute every day at midnight (based on the server's timezone settings).
Now that we have our time interval set, we're going to point the Cron tab at our actual PHP files, which will be doing the heavy lifting. We're going to use one PHP file to connect to our database, and another to execute a MySQL statement to truncate our cache table. You'll need the following files:
db-connect.php file with:
<?php
// set db access info as constants
define ('DB_USER','username');
define ('DB_PASSWORD','pw');
define ('DB_HOST','localhost');
define ('DB_NAME','dbname');
// make connection and select db
$dbc = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD) OR die ('Could not connect to MySQL: ' . mysql_error() );
mysql_select_db(DB_NAME) OR die ('Could not select the db: ' . mysql_error() );
?>
truncate.php file with:
<?php
require_once('/home/ffsports/mysql/db-connect.php'); // connect to db
$query = "TRUNCATE TABLE cache";
$result = @mysql_query($query); // run the query
?>
Of course you can substitute in any MySQL functions you wish to execute above.
Putting it all together - now you'll want to link to these files via Cron tab. Back on the cPanel Cron Job page, you'll want to enter the following in the Command field, substituting your own values for the path to your PHP file.:
00*** /usr/local/bin/php -q /home/user/includes/truncate.php
Voila
You've setup a Cron Job that will execute your MySQL statement at the specified interval. Since this was such a simple MySQL command, you could have executed the entire thing in the Cron Job Command line. We'll show you how this is done in the next example.
For simple MySQL commands, you don't need to link to a separate PHP file. You can both access your MySQL database and execute the Cron Job within Cron's Command line as follows:
mysql -uUSER -pPWD -hDB-HOSTNAME/IPADDRESS -e "truncate table db.cache"
For example, if your username is "root", your password "password", and your IP address 192.168.1.1, you would enter the following:
mysql -uroot -ppassword -h192.168.1.1 -e "truncate table db.cache"
All Content © 2005 - 2010 Contract Web Development, Inc. All Rights Reserved. Privacy Policy | Terms of Use | Powered by Drupal
Great Tutorial
I am using your cron job script, but how do you issue the command to only delete cache files older than 2 days old? For example:
mysql -uUSER -pPWD -hDB-HOSTNAME/IPADDRESS -e "truncate table db.cache"
Delete only older than 2 days. If this is not possible in a cron command, how would you write a PHP script to accomplish the same task, or preferably a Windows .bat file? I use both Windows and Linux, but would rather do my admin tasks in Windows.
Time commands in cron
You can use the following cron commands to control time functions:
-mtime +2
In this case, +2 is 2 days. You can also, optionally, control size with the following command:
-size +10M
where +10M is 10 MB.