Linux

Node Exporter Grafana Dashboard 更新啦!

2024-11-04

Node Exporter Dashboard分为2个版本 ?TenSunS自动同步版:通过TenSunS来管理各云厂商的ECS监控:支持在云厂商对资源增删改查后,自动同步到Prometheus(同时也支持自建主机的批量web管理与同步)。采集云厂商的ECS信息(包括到期日)与分组等信息,基于采集的数据实现了更友好、丰富的资源分组,以及云资源名称等多种云标签的搜索与展示。 原基于Job分组的 ...

Linux

centos7 编译安装haproxy1.9.4

2020-05-30

编译安装 yum install gcc pcre-static pcre-devel -y wget http://www.haproxy.org/download/1.9/src/haproxy-1.9.4.tar.gz -O ~/haproxy.tar.gz tar xzvf ~/haproxy.tar.gz -C ~/ cd ~/haproxy-1.9.4 make TARGET=l ...

Linux

OpenLDAP+Centos7

2019-03-06

服务端操作: 下载编译安装: http://www.openldap.org/software/download/ gunzip -c openldap-2.4.45.tgz | tar xvfB - cd openldap-2.4.45/ ./configure --prefix=/usr/local/openldap make depend make #make test make in ...

Linux

centos7 riak-kv,riak-cs集群部署

2019-03-06

RIAK-KV集群部署 安装basho源 curl -s https://packagecloud.io/install/repositories/basho/riak/script.rpm.sh | sudo bash ### https://packagecloud.io/basho/riak/packages/el/7/riak-2.2.3-1.el7.centos.x86_64.rp ...

Linux

Centos7 编译redis 服务启动方式

2019-03-06

安装: yum install gcc tcl -y http://download.redis.io/redis-stable.tar.gz tar -xvzf redis-stable.tar.gz cd redis-stable make && make install cd utils ./install_server.sh 指定路径:/usr/local/bin/r ...

Linux

centos7 设置启动内核

2019-03-06

首先查看当前系统有几个内核 cat /boot/grub2/grub.cfg |grep menuentry 设置默认的启动内核 grub2-set-default 'CentOS Linux (4.18.3-1.el7.elrepo.x86_64) 7 (Core)' 验证是否修改成功 grub2-editenv list 卸载多余内核 rpm -qa | grep kernel yum ...