摘要:
底层环境 1.JDK8版本 2.nginx部署安装 3.redis安装 4.tomcat8、9版本安装 5.oracle11g 公司提供 6.项目的安装以及部署调测 准备的环境 -rw-r--r-- 1 root root 10717836 7月 17 11:39 apache-tomcat-8.5 阅读全文
摘要:
检查 tns的日志信息 查看具体报错详情 /u01/app/oracle/diag/tnslsnr/<hostname>/listener/alert/log.xml 修改litener.ora # listener.ora Network Configuration File: /u01/app/ 阅读全文
摘要:
当您使用 Nginx 的配置如下所示: Nginx http { upstream backend_get { server A-server-ip:port; } upstream backend_put { server B-server-ip:port; } server { listen 8 阅读全文
摘要:
三万字无坑搭建基于Docker+K8S+GitLab/SVN+Jenkins+Harbor持续集成交付环境 | 夜法之书 (17lai.site) 博客需要更改的地方 unable to recognize "ingress-nginx-mandatory.yaml": no matches for 阅读全文
摘要:
这个是官网的prometheus的告警规则详解 Awesome Prometheus alerts | Collection of alerting rules (samber.github.io) 阅读全文
摘要:
一、安装docker 移除非官方软件yum remove docker卸载旧版本 yum remove docker \docker-common \docker-selinux \docker-engine 依赖安装 yum install -y yum-utils device-mapper-p 阅读全文
摘要:
Gitlab 备份到本地 #!/bin/bash # GitLab 容器名称或ID gitlab_container_name_or_id="gitlab" # 宿主机上的备份目录 backup_directory_on_host="/home/backups/gitlab" # 检查宿主机上的备份 阅读全文
摘要:
夜莺监控 文章参考 https://blog.csdn.net/m0_61318185/article/details/136303124 https://blog.csdn.net/weixin_62173811/article/details/130189727 官网地址 夜莺项目整体介绍 - 阅读全文
摘要:
ELK 清理ES 索引数据 这个是清理前十天的索引信息,只保留十天的索引日志 目前我是手动执行的脚本、如有需要可以自行添加定时任务 #!/bin/bash #sticsearch的基本信息 ES_HOST="127.0.0.1" ES_PORT="9200" ES_USER="elastic" ES 阅读全文
摘要:
📣 2.逻辑方式✨ 2.1 pg_dumppg_dump 将表结构及数据以SQL语句的形式导出到文件中,恢复数据时,将导出的文件作为输入,执行其中的SQL语句,即可恢复数据。 pg_dump 能够对正在使用的PostgreSQL数据库进行备份,并且不影响正常业务的读写。 pg_dump备份示例:1 阅读全文