|
@@ -6,8 +6,8 @@ use think\facade\Cache;
|
|
|
date_default_timezone_set("PRC");
|
|
|
define('HOST', '127.0.0.1');
|
|
|
define('PORT', '6379');
|
|
|
-define('PASSWORD', '123456');
|
|
|
-define('DATABASE', 4);
|
|
|
+define('PASSWORD', 'R!478gH*%23nPn');
|
|
|
+define('DATABASE', 2);
|
|
|
|
|
|
|
|
|
function app_redis()
|
|
@@ -59,7 +59,7 @@ function rlog(...$args)
|
|
|
return;
|
|
|
}
|
|
|
static $LOG_CONSOLE = false; //是否输出到控制台
|
|
|
- static $LOG_NAME = "school_mqtt.log"; //值为空时 不写入文件
|
|
|
+ static $LOG_NAME = "school_mqtt_nb_serv.log"; //值为空时 不写入文件
|
|
|
static $LOG_SIZE = 64 * 1024 * 1024; //文件最大尺寸
|
|
|
|
|
|
static $LOG_CACHE = false; //是否缓存日志内容 用于批量写入文件
|
|
@@ -300,11 +300,17 @@ function rcInfoMsg($topic, $msg)
|
|
|
}
|
|
|
function loop()
|
|
|
{
|
|
|
- $server = 'develop.rltest.cn';
|
|
|
+ // $server = 'develop.rltest.cn';
|
|
|
+ // $port = 1883;
|
|
|
+ // $clientId = 'mqttx_test1312412412';
|
|
|
+ // $username = 'rl517';
|
|
|
+ // $password = "rlian2022";
|
|
|
+ // $clean_session = true;
|
|
|
+ $server = '127.0.0.1';
|
|
|
$port = 1883;
|
|
|
- $clientId = 'mqttx_test1312412412';
|
|
|
- $username = 'rl517';
|
|
|
- $password = "rlian2022";
|
|
|
+ $clientId = 'mqttx_resiarea'.rand(1234, 99999);
|
|
|
+ $username = 'rl0606';
|
|
|
+ $password = "rlian2023";
|
|
|
$clean_session = true;
|
|
|
|
|
|
$connectionSettings = new ConnectionSettings();
|
|
@@ -344,7 +350,7 @@ function loop()
|
|
|
// getDevSysMsg($topic, $message);
|
|
|
// }, 0);
|
|
|
//终端上报系统信息数据
|
|
|
- $mqtt->subscribe('RL4RSSI/rfidinfos4444', function ($topic, $message) {
|
|
|
+ $mqtt->subscribe('RL4RSSI/rfidinfos', function ($topic, $message) {
|
|
|
rlog("INFO", 'recv', $topic, $message);
|
|
|
$data=json_decode($message,true);
|
|
|
|