摘要: 自定义: 创建文件: vim /etc/zabbix/zabbix_agentd.d/userparameter_mysql.conf UserParameter=mysql.status[*],/etc/zabbix/zabbix_agentd.d/mysql.sh $1 逗号后连接的是一个脚本 阅读全文
posted @ 2020-06-04 15:40 麋鹿zyx 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 系统信息 操作系统类型:uname 系统当前时间:date 系统版本号:cat /etc/redhat-release 系统内核:uname -r 系统重启时间 uptime |awk '{print $3}' | awk '{print $1}' 服务器上的主机名:hostname 网路环境 IP 阅读全文
posted @ 2020-05-19 17:36 麋鹿zyx 阅读(120) 评论(0) 推荐(0) 编辑
摘要: Mysql互为主从 环境: 系统环境:centos6.5_x64 Mysql-A:172.18.49.10 Mysql-B:172.18.49.2 Mysql安装已经完成。 两台mysql上时间同步: # ntpdate pool.ntp.org 在A上操作: # vi /etc/my.cnf 添加 阅读全文
posted @ 2020-05-12 20:06 麋鹿zyx 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 首先由一台虚拟机安装 Tomcat 第二台虚拟机安装 在Apache 的虚拟机安装Tomcat-connectors 安装依赖包 yum -y install httpd-devel gcc gcc-c++ 解压Tomcat-comcattar -zxvf tomcat-connectors-1.2 阅读全文
posted @ 2020-05-12 16:41 麋鹿zyx 阅读(88) 评论(0) 推荐(0) 编辑
摘要: ELK的安装 A虚拟机 jdk + elasticsearch + kibana B虚拟机 jdk + logstash A虚拟机 中 安装 jdk 安装 elasticsearch 修改 vim /etc/elasticsearch/elasticsearch.yml IP 是A虚拟机的IP地址 阅读全文
posted @ 2020-05-12 13:52 麋鹿zyx 阅读(245) 评论(0) 推荐(0) 编辑
摘要: LVS-NAT模式 在nat模式群集中,lvs负载调度器是所有节点访问Internet的网关服务器,其外网地址为192.168.20.138,同时也作为整个群集的VIP地址。Lvs调度器具有两块网卡分别连接内外网。 环境: 服务器系统都为centos6.5_x64 Lvs负载调度器:eth0:192 阅读全文
posted @ 2020-05-12 13:42 麋鹿zyx 阅读(92) 评论(0) 推荐(0) 编辑
摘要: shell三剑客 grep grep 的全程为Global search Regular Expression and Print out the line (类似windows 平台的ctrl+F)#过滤出/etc/passwd 包含root的行cat /etc/passwd|grep root# 阅读全文
posted @ 2020-05-12 13:40 麋鹿zyx 阅读(160) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash:<<eofecho "获取第一个传参:$1"echo "获取第二个传参:$2"echo "获取第三个传参:$3"echo "获取所有的传参(方法1-\$*):$*"echo "获取所有的传参(方法2-\$@):$@"echo "获取传参的个数:$#个"echo "获取当前脚本 阅读全文
posted @ 2020-05-12 13:38 麋鹿zyx 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 关闭防火墙 上传yum源 下载zabbix 下载mysql yum -y install zabbix-server-mysql zabbix-web-mysql zabbix-agent mariadb mariadb-server 启动自启mysql systemctl enable maria 阅读全文
posted @ 2020-05-09 15:10 麋鹿zyx 阅读(65) 评论(0) 推荐(0) 编辑
摘要: LVS-DR模式安装部署 在DR模式中,LVS负载调度器作为集群的访问入口,但是不作为网关使用,服务器中的节点都各自接入Internet,发送给客户机的web响应不经过LVS负载调度器。 这种方式入站、出站数据被分别处理,因此LVS负载调度器和所有的节点都需要配置有VIP地址,以便响应整个群集的访问 阅读全文
posted @ 2020-05-04 11:46 麋鹿zyx 阅读(112) 评论(0) 推荐(0) 编辑