-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmqtt-mysql-admin
31 lines (23 loc) · 943 Bytes
/
mqtt-mysql-admin
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/php
<?php
/************************************************************************
mqtt-mysql-admin
- deletes old events from database
Copyright © 2015 Theo Arends
************************************************************************/
$keepdays = 40; // Number of days from today to keep events
// ==== MQTT MySQL parameters
$db_hostname = "sidnas2"; // MQTT MySQL server;
$db_database = "mqtt";
$db_username = "mqttuser";
$db_password = "mqttpass";
$db = mysql_pconnect($db_hostname, $db_username, $db_password) or trigger_error(mysql_error(),E_USER_ERROR);
mysql_select_db($db_database, $db);
$timestamp = date("Y-m-d", time() - ($keepdays * 86400));
//echo "Timestamp $timestamp \n";
$query = "DELETE FROM messages WHERE timestamp < '$timestamp'";
$result = mysql_query($query) or die(mysql_error());
$query = "OPTIMIZE TABLE messages";
$result = mysql_query($query) or die(mysql_error());
mysql_close($db);
?>