上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页
摘要: 创建用户 mysql> create user root@'%' identified by '123'; #8.0以前,下面语句,可以自动创建用户并授权 mysql> grant all on *.* to root@'%' identified by '123'; #8.0以后, 需要先创建用户 阅读全文
posted @ 2020-10-19 09:20 ForLivetoLearn 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 安装:下载好安装包,rpm安装就行了 rpm -ivh filebeat-6.8.8-x86_64.rpm 收集nginx访问日志和错误日志(转JSON日志时,如果不成功,kibana在创建索引时候message字段拆不开) #更改nginx日志格式为JSON,注意逗号 log_format jso 阅读全文
posted @ 2020-08-31 11:11 ForLivetoLearn 阅读(217) 评论(0) 推荐(0) 编辑
摘要: logstash同样不需要以root身份运行,并且logstash是安装在应用服务器上的程序,负责推送应用服务器的日志到elasticsearch上 解压logstash压缩包,将其放到某个目录下,创建logstash用户 [root@localhost ~]# useradd logstash l 阅读全文
posted @ 2020-08-31 11:07 ForLivetoLearn 阅读(203) 评论(0) 推荐(0) 编辑
摘要: kibana可以使用root身份运行,所以无需在新加用户 将压缩包文件解压后放到某个目录下,我这里放的是/usr/local 更改配置文件,只需要改3个地方 [root@bogon ~]# egrep ^[a-z] /usr/local/kibana/config/kibana.yml server 阅读全文
posted @ 2020-08-31 11:03 ForLivetoLearn 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 首先对系统参数进行调整 vim /etc/security/limits.conf #打开文件数量 * soft nofile 65535 * hard nofile 65535 #进程数量 * soft nproc 65535 * hard nproc 65535 #内存限制 * soft mem 阅读全文
posted @ 2020-08-31 09:51 ForLivetoLearn 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 服务器型号 [root@121 ~]# dmidecode |grep -A4 'System Information' System Information Manufacturer: Dell Inc. Product Name: PowerEdge R430 Version: Not Spec 阅读全文
posted @ 2020-08-24 16:30 ForLivetoLearn 阅读(972) 评论(0) 推荐(0) 编辑
摘要: InfluxDB的安装方式非常简单,直接从官网下载rpm包后,安装就行 # influxdb时序数据库安装包 wget https://dl.influxdata.com/influxdb/releases/influxdb-1.8.0.x86_64.rpm # 采集和上报工具 wget https 阅读全文
posted @ 2020-07-02 15:20 ForLivetoLearn 阅读(2251) 评论(0) 推荐(1) 编辑
摘要: 监控mysql表中数据,如果没有当天的数据就用zabbix报警 mysql表用有时间列,需要使用时间函数做判断 1.当前日期函数 mysql> SELECT NOW(); + + | NOW() | + + | 2020-06-12 10:07:07 | + + 1 row in set (0.00 阅读全文
posted @ 2020-06-12 10:18 ForLivetoLearn 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 坑死我了!纳闷客户端把公钥放到gitlab里面了,推代码的时候,还要密码。 gitlab是以docker容器起的,ssh端口22映射到了宿主机的12222。客户端添加远程分支需要下面这样 #删除当前远程分支路径 git remote remove origin #添加新的远程分支领 git remo 阅读全文
posted @ 2020-06-03 11:19 ForLivetoLearn 阅读(1037) 评论(0) 推荐(0) 编辑
摘要: 先去申请企业微信,要以管理员的权限创建机器人,建完机器人后会有一串webhook,类似这种 https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=xxxxxxxx509-4f42-xxxxxxxx 测试这个钩子能不能用,具体使用方法可以看微信机器人 阅读全文
posted @ 2020-05-29 16:02 ForLivetoLearn 阅读(5226) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页