failed: Invalid UTF-8 sequence in header value 解决方式 nginx.conf里添加: server_tag "apache";……
阅读全文
下载各组件,(选择安装) wget https://github.com/prometheus/prometheus/releases/download/v2.23.0/prometheus-2.23.0.linux-amd64.tar.gz wget https://github.com/prometheus/alertmanager/releases/download/v0.21.0/alertmanager-0.21.0.linux-amd64.tar.gz wget https://github.com/prometheus/blackbox_exporter/releases/download/v0.17.0/blackbox_exporter-0.17.0.linux-amd64.tar.gz wget https://github.com/prometheus/consul_exporter/releases/download/v0.7.1/consul_exporter-0.7.1.linux-amd64.tar.gz wget https://github.com/prometheus/graphite_exporter/releases/download/v0.9.0/graphite_exporter-0.9.0.linux-amd64.tar.gz wget https://github.com/prometheus/haproxy_exporter/releases/download/v0.11.0/haproxy_exporter-0.11.0.linux-amd64.tar.gz wget https://github.com/prometheus/memcached_exporter/releases/download/v0.7.0/memcached_exporter-0.7.0.linux-amd64.tar.gz wget https://github.com/prometheus/mysqld_exporter/releases/download/v0.12.1/mysqld_exporter-0.12.1.linux-amd64.tar.gz wget https://github.com/prometheus/node_exporter/releases/download/v1.0.1/node_exporter-1.0.1.linux-amd64.tar.gz wget https://github.com/prometheus/pushgateway/releases/download/v1.2.0/pushgateway-1.2.0.linux-amd64.tar.gz wget https://github.com/prometheus/statsd_exporter/releases/download/v0.17.0/statsd_exporter-0.17.0.linux-amd64.tar.gz 安装prometheus组件 tar xf prometheus-2.20.1.linux-amd64.tar.gz prometheus配置文件prometheus.yml global: scrape_interval: 15s # 应用程序或服务抓取数据的周期,默认……
阅读全文
全集群重启 禁用分片分配 PUT _cluster/settings { "persistent": { "cluster.routing.allocation.enable": "primaries" } } 关闭所有es节点 sudo systemctl stop elasticsearch # 或者 kill $(cat pid) 根据需要对es做出修改 重新启动节点 如果有专用的主节点,请先启动它,然后等待专用的主节点选举出主节点,再继续启动数据节点 查看集……
阅读全文
本文参考: https://www.cnblogs.com/ilovena/p/10123516.html 环境说明: 软件版本: kafka_2.12-2.6.0.tgz(本文使用的是kafka自带的zk) 系统版本: CentOS 7.3.1611 机器: 192.168.111.65 192.168.111.66 192.168.111.67 zookeeper配置 为zookeeper添加SASL支持,在配置……
阅读全文
文档地址: https://www.elastic.co/guide/en/logstash/current/plugins-inputs-s3.html 说明 S3 input插件将读取指定的S3中符合配置的每个文件的内容,并将文件中的每一行转换为一个message,后续可以利用filter对message进行处理。在读取了S3上的文件后,S3 i……
阅读全文
说明: Filebeat 的 S3模块是用来采集AWS 的 S3存储的服务器访问日志的,通过配置 S3的事件通知,将s3的事件通知发送到 SQS,然后再用 Filebeat从 SQS 采集日志到 es 里 前提: 单独申请个 SQS,用于存储 s3的……
阅读全文
安装 htpasswd # RHEL / CentOS / Oracle Linux yum -y install httpd-tools # Debian,Ubuntu apt -y install apache2-utils 修改 nginx 的 server 配置文件,添加如下两句 auth_basic "User Authentication"; # 登录时显示的字符 auth_basic_user_file conf/htpasswd.db; 示例: server { ... auth_basic "User Authentication"; auth_basic_user_file conf/htpasswd.db; location /public/ { auth_basic off; } } 生成密码 -c 代表是新建 htpasswd.db 文件,如果有就不用……
阅读全文
hadoop集群中一些默认的端口和配置大全 组件 节点 默认端口 配置 用途说明 HDFS DataNode 50010 dfs.datanode.address datanode服务端口,用于数据传输 HDFS DataNode 50075 dfs.datanode.http.address http服务的端口 HDFS DataNode 50475 dfs.datanode.https.address https服务的端口 HDFS DataNode 50020 dfs.datanode.ipc.address ipc服务的端口 HDFS NameNode 50070……
阅读全文
安装supervisor配置 安装 pip install supervisor 未安装pip,可下载python安装包使用python命令安装 下载地址: https://pypi.org/project/supervisor/#files python setup.py install 创建配置文件 echo_supervisord_conf > /etc/supervisord.conf 启动服务 supervisord -c /etc/supervisord.conf 添加新项目 新加的项目,以项目名命令,统一放到/et……
阅读全文
yum安装mysql5.7 下载mysql官方yum源 sudo wget https://repo.mysql.com//mysql80-community-release-el7-3.noarch.rpm 安装yum源 sudo yum -y localinstall mysql80-community-release-el7-3.noarch.rpm 禁用掉8.0版本,开启5.7版本(官方默认开启的是8.0版本) #查看当前mysql版本哪个是启动 sudo yum repolist all | grep mysql #后面显示……
阅读全文