上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: #!/usr/bin/python3 import os import sys import re import pymysql import time import logging import pandas as pd import requests from clickhouse_driver 阅读全文
posted @ 2023-10-06 22:04 苦逼yw 阅读(10) 评论(0) 推荐(0)
摘要: 说明:在特定的目录中通过文件名通配符筛选出图片,向某个接口发送post请求传输图片识别图片,并判断post请求返回的结果 #!/usr/bin/python #-*- coding: utf-8 -*- import os, sys, glob #import tqdm import multipr 阅读全文
posted @ 2023-10-06 21:55 苦逼yw 阅读(46) 评论(0) 推荐(0)
摘要: 1、@reboot 是 cron 的一个特殊关键字,用于指定在系统启动时执行命令。 具体来说,当您在 cron 的 crontab 文件中使用 @reboot 关键字,并将它与您希望在系统启动时执行的命令一起使用,那么该命令将会在每次系统启动时自动执行。 例如,@reboot /usr/bin/su 阅读全文
posted @ 2023-09-19 09:42 苦逼yw 阅读(125) 评论(1) 推荐(0)
摘要: 参考:https://blog.csdn.net/qq_36908783/article/details/105816074 参考:https://baijiahao.baidu.com/s?id=1772918088589532172&wfr=spider&for=pc 一、Druid和MyBat 阅读全文
posted @ 2023-09-18 18:31 苦逼yw 阅读(42) 评论(0) 推荐(0)
摘要: 1 备份现有的yum源 cd /etc/yum.repos.d/ mkdir bak mv *.repo /etc/yum.repos.d/bak 2 创建清华yum源 vim /etc/yum.repos.d/QingHua.repo # CentOS-Base.repo # # The mirr 阅读全文
posted @ 2023-08-29 17:56 苦逼yw 阅读(940) 评论(0) 推荐(0)
摘要: seata 官网 : https://seata.io/zh-cn/ seata下载地址: https://github.com/seata/seata 1、下载seata包 wget https://github.com/apache/incubator-seata/releases/downlo 阅读全文
posted @ 2023-08-28 17:22 苦逼yw 阅读(1331) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/qq_27546717/article/details/122264334 阅读全文
posted @ 2023-08-23 15:06 苦逼yw 阅读(77) 评论(0) 推荐(0)
摘要: 1、在pom.xml导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId> </dependency> 2、在Spring 阅读全文
posted @ 2023-08-19 22:27 苦逼yw 阅读(216) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/lingfeian/article/details/125482271 1、解压上传好的安装包 tar -zxvf ./docker-20.10.9.tgz 2、将解压得到的文件复制到 /usr/bin目录下 cp docker/* /usr/bin 阅读全文
posted @ 2023-08-16 23:51 苦逼yw 阅读(232) 评论(0) 推荐(0)
摘要: 1、开放防火墙端口 firewall-cmd --zone=public --add-port=9092/tcp --permanent firewall-cmd --zone=public --add-port=7000-40000/tcp --permanent firewall-cmd --r 阅读全文
posted @ 2023-08-16 23:51 苦逼yw 阅读(74) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页