网站首页 站内搜索

搜索结果

查询Tags标签: logs,共有 152条记录
  • CentOS7.9-ES7 部署,开机自启

    CentOS7.9-ES7 部署下载 https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.11.2-linux-x86_64.tar.gz解压 tar -zxvf elasticsearch-7.11.2-linux-x86_64.tar.gz移动目录 mv elasticsearch-7.11.2 /usr/local/修改es相关配置文件(重点配置) # vim c…

    2022/2/20 7:26:34 人评论 次浏览
  • centos8(linux): nohup生成的日志切分

    一,bash代码 1,splitlog.sh[lhdop@blog tools]$ more splitlog.sh#!/bin/bash LOG_PATH=/data/store/back/logs/back.log now_date=`date +%Y%m%d` DEST_PATH=/data/store/back/logs/back${now_date}.log echo "dest log path:$DEST_PATH"; cp -axv $LOG_PATH …

    2022/2/14 7:14:18 人评论 次浏览
  • 力扣刷题记录-180 连续出现的数字

    思路: 因为要求是连续出现3次以上,所以利用id字段,对比当前id以及接下来的三个id是否相同,相同则可以输出。 使用左连接的方法如下: select distinct a.Num as ConsecutiveNums from Logs a left join Logs b on a.Id = b.Id + 1 and a.Num = b.Num left join Logs …

    2022/2/1 23:39:30 人评论 次浏览
  • docker安装mysql

    1.拉取mysql镜像 docker pull mysql:5.6 2.通过镜像创建容器 docker run --name mysql -p 3306:3306 -itd --privileged=true -v /usr/local/mysql/conf:/etc/mysql/conf.d -v /usr/local/mysql/logs:/logs -v /usr/local/mysql/data:/var/lib/mysql -e MYSQL_ROOT_PASSWO…

    2022/1/30 19:04:16 人评论 次浏览
  • npm报错:A complete log of this run can be fund in: C\Users\用户\AppData\Roaming\npm-cache_logs\解决方

    因项目中安装模块,多次不成功,所以导致报错。 A complete log of this run can be fund in: C\Users\用户\AppData\Roaming\npm-cache_logs\2018-9-24T10_55_24_806Z-debug.log 报错截图: 这时你需要清理缓存了。 1.注:将node_modules文件夹先删除 2.清理缓存命令: n…

    2022/1/15 23:33:31 人评论 次浏览
  • npm报错:A complete log of this run can be fund in: C\Users\用户\AppData\Roaming\npm-cache_logs\解决方

    因项目中安装模块,多次不成功,所以导致报错。 A complete log of this run can be fund in: C\Users\用户\AppData\Roaming\npm-cache_logs\2018-9-24T10_55_24_806Z-debug.log 报错截图: 这时你需要清理缓存了。 1.注:将node_modules文件夹先删除 2.清理缓存命令: n…

    2022/1/15 23:33:31 人评论 次浏览
  • cnn轮廓检测

    这个是收录: GitHub - MarkMoHR/Awesome-Edge-Detection-Papers: A collection of edge/contour/boundary detection papers and toolbox.这个模型比较小,效果还可以: GitHub - zhuoinoulu/pidinet: Code for the ICCV 2021 paper "Pixel Difference Networks for…

    2021/12/29 23:38:51 人评论 次浏览
  • cnn轮廓检测

    这个是收录: GitHub - MarkMoHR/Awesome-Edge-Detection-Papers: A collection of edge/contour/boundary detection papers and toolbox.这个模型比较小,效果还可以: GitHub - zhuoinoulu/pidinet: Code for the ICCV 2021 paper "Pixel Difference Networks for…

    2021/12/29 23:38:51 人评论 次浏览
  • Redis 错误Please check the Redis logs for details about the RDB error解决

    今天本地给redis定时存数据时出现以下错误:MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors durin…

    2021/12/13 19:18:29 人评论 次浏览
  • Redis 错误Please check the Redis logs for details about the RDB error解决

    今天本地给redis定时存数据时出现以下错误:MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors durin…

    2021/12/13 19:18:29 人评论 次浏览
  • MySQL高级 - 日志 - 二进制日志(row及日志删除)

    查看ROW格式日志 配置 : #配置开启binlog日志, 日志的文件前缀为 mysqlbin -----> 生成的文件名如 : mysqlbin.000001,mysqlbin.000002 log_bin=mysqlbin#配置二进制日志的格式 binlog_format=ROW 插入数据 : insert into tb_book values(null,SpringCloud实战,2088-0…

    2021/12/10 2:16:45 人评论 次浏览
  • MySQL高级 - 日志 - 二进制日志(row及日志删除)

    查看ROW格式日志 配置 : #配置开启binlog日志, 日志的文件前缀为 mysqlbin -----> 生成的文件名如 : mysqlbin.000001,mysqlbin.000002 log_bin=mysqlbin#配置二进制日志的格式 binlog_format=ROW 插入数据 : insert into tb_book values(null,SpringCloud实战,2088-0…

    2021/12/10 2:16:45 人评论 次浏览
  • REASON: Ambari Server java process has stopped. Please check the logs for more information.

    REASON: Ambari Server java process has stopped. Please check the logs for more information.看日志发现是用户权限问题 授下权 grant all privileges on *.* to ambari@% IDENTIFIED BY 密码 WITH GRANT OPTION; grant all privileges on *.* to ambari@localhost ID…

    2021/12/5 12:16:41 人评论 次浏览
  • REASON: Ambari Server java process has stopped. Please check the logs for more information.

    REASON: Ambari Server java process has stopped. Please check the logs for more information.看日志发现是用户权限问题 授下权 grant all privileges on *.* to ambari@% IDENTIFIED BY 密码 WITH GRANT OPTION; grant all privileges on *.* to ambari@localhost ID…

    2021/12/5 12:16:41 人评论 次浏览
  • Python日志封装可多模块调用

    #!/usr/bin/env python # -*- coding: utf-8 -*- # @Author: wjh # @Date : 2019/06/20 15:00 # @Desc : 封装log日志文件import logging import logging.handlers import os import timeclass logs(object):def __init__(self,level,logger=None):self.logger = logger…

    2021/11/30 20:41:01 人评论 次浏览
扫一扫关注最新编程教程