代码改变世界

随笔分类 -  Others

时序数据库

2024-08-17 14:12 by abce, 195 阅读, 收藏, 编辑
摘要: 当需要显示每分钟、每天或任何其他日期范围的分析数据时,你需要使用时间序列数据库。时间序列数据库存储了带有相关时间戳的数据点,因此可以向用户显示时间范围内的趋势。它通常用于基于时间的信息和分析的可视化。 什么是时间序列数据库? 在时间序列数据库中,每条记录都包含一个时间戳。时间戳可用于显示单个数据点, 阅读全文

PPT学习

2022-07-02 22:23 by abce, 272 阅读, 收藏, 编辑
摘要: 1.把图片设置成背景 右键-->[设置背景格式]-->[图片或纹理填充]-->[插入图片来自]-->[文件]-->到指定的路径下选中图片 2.PPT的宽屏和普屏 [设计]-->[幻灯片大小] 普屏4:3;宽屏16:9 现在默认都是宽屏 3.PPT修改背景颜色设置某一页 右键-->[设计背景格式]-- 阅读全文

docker部署elk时汉化Kibana服务

2020-04-14 14:30 by abce, 1511 阅读, 收藏, 编辑
摘要: 安装后,默认是英文的,可以修改一下kibana的配置文件,显示成中文 登录容器,然后修改配置文件,比如: /opt/kibana/config/kibana.yml #加上一行配置 i18n.locale: zh-CN 分号: 和 zhe-CN 之间必须有个空格,否则kibana无法启动 阅读全文

docker安装Elasticsearch:7.6.0启动失败,ERROR: [1] bootstrap checks failed

2020-02-27 21:13 by abce, 5698 阅读, 收藏, 编辑
摘要: 报错信息: OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release. {"type 阅读全文

etcd启动报错:couldn't find local name "default" in the initial cluster configuration

2019-11-28 10:38 by abce, 7085 阅读, 收藏, 编辑
摘要: 启动etcd的时候报错: 检查配置文件: 可以看到: 这里参数配置不一致。改成一致就可以了。 阅读全文

ERROR: relation "pg_buffercache" does not exist

2019-05-28 15:50 by abce, 2984 阅读, 收藏, 编辑
摘要: 创建pg_buffercache后,查询时报错: 原因:消息'relation does not exist'通常是因为没有连接到相应数据库。因为我只是psql连接后,没有切换到某个数据库。 解决方法: 阅读全文

mycat偶尔会出现JVM报错double free or corruption并崩溃退出

2019-01-08 10:21 by abce, 1292 阅读, 收藏, 编辑
摘要: mycat偶尔会出现JVM报错double free or corruption并崩溃退出 没有复杂的sql,也没有大量的io INFO | jvm 15 | 2019/01/07 18:06:31 | *** Error in `java': double free or corruption ( 阅读全文

Keepalived源码安装

2017-11-28 14:36 by abce, 1133 阅读, 收藏, 编辑
摘要: 1.编译、安装 2.配置成服务 3.拷贝配置文件 4.使用软连接或者直接拷贝执行文件 5.加入开机启动项 脚本内容如下: 阅读全文

openkm预览功能报错:flexpaper License key not accepted(no key passed to viewer)

2017-06-21 15:02 by abce, 815 阅读, 收藏, 编辑
摘要: openkm:6.3.4 使用google浏览器打开,想预览文件,但是pdf、word和图片都不能显示。只是显示空白。 换成IE后,再次尝试,发现了报错信息: 解决方案: 1- Stop openkm.2- Ensure you have deleted /webapps/OpenKM and wo 阅读全文

openkm安装过程

2017-06-21 10:15 by abce, 768 阅读, 收藏, 编辑
摘要: # java -jar /software/OKMInstaller.jar Running in Linux: 0.9.1-CE (build: 445bef5) Linux distro: rhel (Red Hat Enterprise Linux Server - 7.2) Local host: openkmtest (10.10.12.253) Java version: 1.8.... 阅读全文

设置log rotation避免tomcat catalina.out文件增长过大

2017-01-12 14:56 by abce, 2495 阅读, 收藏, 编辑
摘要: 创建logrotate配置文件 添加以下内容: 参数说明: 在大多数linux系统上都可以找到文件:/etc/cron.daily/logrotate,该文件每天都会被运行。运行时会调用: 这样就会rotate掉tomcat的日志。如果有多个tomcat实例,就需要配置多个单独的rotation文件 阅读全文

Tomcat8启动报there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache

2016-12-14 14:13 by abce, 13947 阅读, 收藏, 编辑
摘要: 修改方法: tomcat 中context.xml 配置文件加入 <Resources cachingAllowed="true" cacheMaxSize="100000" /> 阅读全文

Tomcat启动时报错,Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext

2016-12-13 19:59 by abce, 108551 阅读, 收藏, 编辑
摘要: 解决方法: 修改tomcat配置文件catalina.properties 阅读全文

here was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache

2016-12-09 11:24 by abce, 4422 阅读, 收藏, 编辑
摘要: tomcat重启后报以下错误: 因为系统要加载不少图片,而tomcat8以上对resource采取了cache,而默认的大小是10M. 可能超过了此限制,那么tomcat是启动不起来了。 解决的办法是在context.xml中调大缓存即可,具体如下: 加在</context>前就行。 阅读全文

打开u盘时提示是否要将其格式化的提示

2015-11-18 09:14 by abce, 1419 阅读, 收藏, 编辑
摘要: 早上打开电脑插入U盘后,发现U盘报以下错误:(心中一紧,昨晚写的文档还在其中呢) 修复方法: Win+R 输入cmd 打开 ,执行命令 chkdsk G: /f 其中G为损坏区域所在盘符,即U盘在电脑中的盘符 阅读全文

Symantec Backup Exec(BE)的启停

2015-10-22 10:29 by abce, 398 阅读, 收藏, 编辑
摘要: # /etc/init.d/VRTSralus.init start Starting Symantec Backup Exec Remote Agent ...... Starting Symantec Backup Exec Remote Agent: [ OK ] # /etc/init.d/VRTSralus.init stop Stopping Symantec Bac... 阅读全文

configure: error: png.h not found.

2015-08-25 17:33 by abce, 2432 阅读, 收藏, 编辑
摘要: PHP的时候提示这个错误 configure: error: png.h not found.,这个是选择安装GD模块才会出现的错误,详细错误信息如下 If configure fails try --with-vpx-dir=<DIR> If configure fails try --with- 阅读全文

Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name

2015-08-25 15:29 by abce, 650 阅读, 收藏, 编辑
摘要: 启动apache的时候,报告以下消息提示: 修改方法: 阅读全文

设置Adobe Reader打开PDF文件保持记忆功能

2015-08-14 13:04 by abce, 1899 阅读, 收藏, 编辑
摘要: 设置Adobe Reader打开PDF文件保持记忆功能 打开菜单“编辑”->“首选项”。 选择种类中的“文档”,在“打开设置”区域勾上“重新打开文档时恢复上次视图设置(R)”,确定之后就可以在下次打开文档时自动显示到上次打开的位置。 阅读全文

Putty设置删除

2015-07-17 14:06 by abce, 1391 阅读, 收藏, 编辑
摘要: 1. 开始→运行→cmd(进入字符界面) 2.切换目录到putty安装目录 3.执行以下清理命令 4.会跳出如下提示信息 点击[是(Y)] 阅读全文
点击右上角即可分享
微信分享提示