上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页
摘要: 开启端口 firewall-cmd --zone=public --add-port=80/tcp --permanent 查询端口号80 是否开启: firewall-cmd --query-port=80/tcp 重启防火墙: firewall-cmd --reload 查询有哪些端口是开启的: 阅读全文
posted @ 2022-02-23 15:11 yanglei.xyz 阅读(557) 评论(0) 推荐(0)
摘要: 一、 问题描述 Homebrew安装git时出现问题 curl: (60) SSL certificate problem: certificate has expired More details here: https://curl.haxx.se/docs/sslcerts.html If y 阅读全文
posted @ 2022-01-19 22:04 yanglei.xyz 阅读(793) 评论(0) 推荐(0)
摘要: 2022-01-17: python:3.9\opencv:4.5.1\hyperlpr:1.21.3 安装环境: pip3 install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple pip3 install hyperlpr 阅读全文
posted @ 2022-01-17 10:15 yanglei.xyz 阅读(587) 评论(0) 推荐(0)
摘要: 1. 启动容器 docker run -d --name jupyter -p 8888:8888 jupyter/base-notebook 更多镜像可以参照:https://jupyter-docker-stacks.readthedocs.io/en/latest/using/selectin 阅读全文
posted @ 2022-01-15 15:42 yanglei.xyz 阅读(1133) 评论(0) 推荐(0)
摘要: 配置文件添加: spring: cloud: gateway: globalcors: cors-configurations: '[/**]': allowCredentials: true allowedOrigins: "*" allowedMethods: "*" allowedHeader 阅读全文
posted @ 2022-01-05 15:02 yanglei.xyz 阅读(305) 评论(0) 推荐(0)
摘要: @JSONField(format="yyyy-MM-dd") 阅读全文
posted @ 2021-12-29 11:20 yanglei.xyz 阅读(329) 评论(0) 推荐(0)
摘要: 1.修改MySQL的登录设置: # vi /etc/my.cnf 在[mysqld]的段中加上一句: skip-grant-tables 保存并且退出vi。 2.重新启动mysqld # /etc/init.d/mysqld restart ( 或service mysqld restart ) 3 阅读全文
posted @ 2021-12-22 09:52 yanglei.xyz 阅读(263) 评论(0) 推荐(0)
摘要: set @@GLOBAL.sql_mode='STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'; 下面是MyS 阅读全文
posted @ 2021-12-15 15:01 yanglei.xyz 阅读(35) 评论(0) 推荐(0)
摘要: /usr/local/mysql/bin/mysqlbinlog --no-defaults --base64-output=decode-rows -v mysql-bin.000452 --database=xgzh-base > base_10_08_000452.sql 阅读全文
posted @ 2021-10-11 14:32 yanglei.xyz 阅读(1432) 评论(0) 推荐(0)
摘要: !/bin/sh echo " docker containers logs file size " logs=$(find /var/lib/docker/containers/ -name *-json.log) for log in $logs do ls -lh $log done 阅读全文
posted @ 2021-08-27 08:48 yanglei.xyz 阅读(121) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页