Sfoglia il codice sorgente

智能照明局域网和云端数据删除

master
qdjjx 4 anni fa
parent
commit
77ef0ff6dd

+ 33
- 0
实践/安装/2020局域网配置.md Vedi File

@@ -0,0 +1,33 @@
1
+> 确定服务器地址
2
+
3
+```
4
+ipconfig
5
+192.168.9.106
6
+```
7
+
8
+> 查看局域网ip
9
+
10
+```
11
+192.168.9.102
12
+192.168.9.104
13
+```
14
+
15
+> 登录模块并设置服务器指向
16
+
17
+```
18
+192.168.9.102:82
19
+192.168.9.104:82
20
+root abc123 mandun_url
21
+192.168.9.106:8080/ebx-bishop/data/carry
22
+```
23
+
24
+> redis配置文件并启动服务
25
+
26
+```
27
+redis.windows.conf
28
+bind 127.0.0.1 192.168.9.106
29
+```
30
+
31
+> appsettings.json配置文件
32
+
33
+

+ 24
- 2
实践/安装/2020智能照明安装指南.md Vedi File

@@ -39,6 +39,9 @@ TecheDing2019
39 39
 用户名:administrator
40 40
 密码:Teche123
41 41
 云端智能照明接口文档:http://47.103.61.198:5001/swagger/index.html 
42
+
43
+--云端数据库
44
+"dingding_zhanting1": "server=47.103.61.198;port=3306;database=dingding_zhanting1;user=root;password=TecheDing2019;SslMode=none"
42 45
 ```
43 46
 
44 47
 # 网站
@@ -336,7 +339,7 @@ INSERT INTO kaiguanapplication(NAME, DelFlag) VALUES('照明',0)
336 339
 
337 340
 # 云端权限管理后台添加集团和项目
338 341
 
339
-- 管理员登录:13800000000 DrrnFwd2018
342
+- 管理员登录:13800000000 DrrnFwd2018  TecheFwd2018
340 343
 - 添加集团:group
341 344
 - 添加项目:project
342 345
 - 添加用户:ddaccount
@@ -370,4 +373,23 @@ INSERT INTO kaiguanapplication(NAME, DelFlag) VALUES('照明',0)
370 373
 - warningtj_187ed5314e0c_h; warningtj_187ed5314e0c_d; warningtj_187ed5314e0c_n;warningtj_187ed5314e0c_y;
371 374
 - dl_187ed5314e0c
372 375
 ```
373
-- 云端同步
376
+- 云端同步
377
+
378
+# 清空数据库
379
+
380
+```
381
+云端:
382
+
383
+SET FOREIGN_KEY_CHECKS=0;
384
+truncate table realwarnings;
385
+truncate table warninghistories;
386
+truncate table notis;
387
+SET FOREIGN_KEY_CHECKS=1;
388
+
389
+局域网:
390
+
391
+SET FOREIGN_KEY_CHECKS=0;
392
+truncate table kaiguanwarning;
393
+truncate table warninghistories;
394
+SET FOREIGN_KEY_CHECKS=1;
395
+```

Loading…
Annulla
Salva