上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 53 下一页
摘要: 1> 通过端口查看是否启动并获取PIDlsof -i:端口号(例如,7777、4444、10000) 2>关闭端口kill -9 PID号(例如,kill -9 7777) 3> 启动 imei.pynohup python -u imei.py > /dev/null 2> /dev/null & 阅读全文
posted @ 2022-10-21 13:51 创客未来 阅读(84) 评论(0) 推荐(0)
摘要: 1.在Mapper中 /** * 批量添加实体 * @param equmentEntityList */ void addBatch(@Param("equmentEntityList") List<EqumentEntity> equmentEntityList); 2.在Mapper.xml 阅读全文
posted @ 2022-10-21 12:33 创客未来 阅读(1940) 评论(0) 推荐(0)
摘要: 在开发过程中自己创建了一个jar包,调试没有问题,但是build的时候提示找不到jar包。 这是因为在maven仓库中找不到自定义的jar包。 解决办法: 一种是将jar包安装到本地maven仓库中,IDEA终端命令行如下: mvn install:install-file -Dfile=xxxxx 阅读全文
posted @ 2022-10-21 11:31 创客未来 阅读(1119) 评论(0) 推荐(0)
摘要: 1. flv.js详情 flv.js git地址链接: https://github.com/bilibili/flv.js . 2.引入依赖 npm install --save flv.js 3.代码实现 <template> <div> <video autoplay controls wid 阅读全文
posted @ 2022-10-19 13:13 创客未来 阅读(519) 评论(0) 推荐(0)
摘要: 需要做是是将A的数据表同步到B数据表中,A数据表和B数据表属于两个数据库,并且存在异地。 1.首先在B端数据库开启federated,数据库默认是关闭的,在数据库配置文件中(my.cnf)的[mysqld]下添加“federated” 2.创建远程执行脚本 CREATE TABLE `new_rq` 阅读全文
posted @ 2022-10-16 19:10 创客未来 阅读(452) 评论(0) 推荐(0)
摘要: nohup python -u alarm.py >/dev/null 2>/dev/null & 阅读全文
posted @ 2022-10-15 19:15 创客未来 阅读(29) 评论(0) 推荐(0)
摘要: 一、防火墙的开启、关闭、禁用命令 (1)设置开机启用防火墙:systemctl enable firewalld.service (2)设置开机禁用防火墙:systemctl disable firewalld.service (3)启动防火墙:systemctl start firewalld ( 阅读全文
posted @ 2022-10-13 08:17 创客未来 阅读(334) 评论(0) 推荐(0)
摘要: 参考:https://gitee.com/xuhanga/study_hard 阅读全文
posted @ 2022-10-11 19:24 创客未来 阅读(117) 评论(0) 推荐(0)
摘要: 在linux服务器上运行Jar文件时通常的方法是: java -jar test.jar 这种方式特点是ssh窗口关闭时,程序中止运行.或者是运行时没法切出去执行其他任务,有没有办法让Jar在后台运行呢: 方法一: nohup java -jar test.jar & //nohup 意思是不挂断运 阅读全文
posted @ 2022-10-11 19:23 创客未来 阅读(380) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/weixin_43965143/article/details/107670047 阅读全文
posted @ 2022-10-11 19:12 创客未来 阅读(101) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 53 下一页