上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页

prometheus-2.37.0监控平台部署

摘要: 装: https://blog.csdn.net/weixin_42434700/article/details/126708457 文章目录 简单介绍 环境 代码包下载 官网地址 CSDN组合包下载 服务器下载 Prometheus体系结构图 Prometheus部署 安装 配置为系统服务 pro 阅读全文
posted @ 2023-02-08 11:06 Colin88 阅读(260) 评论(0) 推荐(0)

nginx限制请求

摘要: 本文主要是对nginx官方limit_req相关模块的限速原理的解释和一些个人理解,主要参考的文章为Rate Limiting with NGINX and NGINX Plus和nginx的ngx_http_limit_req_module的详细说明。 目前来说在nginx上面我们常见的三种限速操 阅读全文
posted @ 2023-02-07 14:52 Colin88 阅读(291) 评论(0) 推荐(0)

CentOS下的日志切割

摘要: 转: CentOS下的日志切割 在Linux下,日志会不停的增长,为了防止日志文件过大,导致我们无法在日志中快速找到想要的信息,我们会定时对日志文件进行切割。在这里我将使用logrotate切割日志。 (1).logrotate的配置文件 logrotate配置文件主要在两个地方:/etc/logr 阅读全文
posted @ 2023-01-28 09:54 Colin88 阅读(181) 评论(0) 推荐(0)

Jvm

摘要: JMX监控java参数配置(容器)。 -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=61818 #端口自定义和rmi.port必须一致 -Dcom.sun.management.jmxremote.rmi.por 阅读全文
posted @ 2022-12-01 18:03 Colin88 阅读(24) 评论(0) 推荐(0)

mysqldump

摘要: 1.根据条件导出数据 mysqldump -h192.168.88.8 -u'username' --fields-terminated-by="id" --skip-extended-insert --compact -t -c -p 数据库 表 --where="(project_code in 阅读全文
posted @ 2022-11-22 14:40 Colin88 阅读(36) 评论(0) 推荐(0)

Prometheus&Grafana 监控

摘要: 转 Prometheus&Grafana 监控 整理自B站多个视频, 如尚硅谷https://www.bilibili.com/video/BV1HT4y1Z7vR 马哥https://www.bilibili.com/video/BV1AK4y1T7QQ 本文地址:https://blog.csd 阅读全文
posted @ 2022-11-14 22:26 Colin88 阅读(1437) 评论(0) 推荐(0)

爬虫-aiohttp

摘要: # -*- coding:utf-8 -*- import requests import asyncio import time import aiohttp from lxml import etree ''' - aiohttp - 是一个支持异步的网络请求模块 - pip install a 阅读全文
posted @ 2022-11-13 14:53 Colin88 阅读(32) 评论(0) 推荐(0)

Python3-异步协程

摘要: import asyncio import time async def get_request(url): print('正在请求的url: ',url) await asyncio.sleep(2) #支持异步模块代码 print('请求结束: ',url) return 'hello' url 阅读全文
posted @ 2022-11-13 13:58 Colin88 阅读(89) 评论(0) 推荐(0)

python3-线程池

摘要: from flask import Flask,render_template from time import sleep # 实例化一个app app = Flask(__name__) #创建视图函数和路由地址 @app.route('/bobo') def index1(): sleep(2 阅读全文
posted @ 2022-11-11 14:48 Colin88 阅读(52) 评论(0) 推荐(0)

CentOS7.9安装部署Cobbler

摘要: 转: CentOS7内安装部署Cobbler_炸鸡嘎嘎的博客-CSDN博客_centos7安装cobbler cobbler简介 Cobbler是一个Linux服务器安装的服务,可以通过网络启动(PXE)的方式来快速安装、重装物理服务器和虚拟机,同时还可以管理DHCP,DNS等。 Cobbler可以 阅读全文
posted @ 2022-10-22 20:02 Colin88 阅读(580) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页