중 소형 규모 사이트 클 러 스 터 구조: zabbix 설치

1. zabbix 설치
서버 설치
rpm -ivh http://repo.zabbix.com/zabbix/3.0/rhel/6/x86_64/zabbix-release-3.0-1.el6.noarch.rpmyum -y install httpd zabbix-web zabbix-server-mysql zabbix-web-mysql mysql-server

PHP 설치
rpm -ivh http://repo.webtatic.com/yum/el6/x86_64/webtatic-release-6-6.noarch.rpm 
yum -y install php55w php55w-mysql php55w-common php55w-gd php55w-mbstring php55w-mcrypt php55w-devel php55w-xml php55w-bcmath

직접 해결:
yum -y  install httpd zabbix-web zabbix-server-mysql zabbix-web-mysql zabbix-get mysql-server php55w php55w-mysql php55w-common php55w-gd php55w-mbstring php55w-mcrypt php55w-devel php55w-xml php55w-bcmath zabbix-get zabbix-java-gateway wqy-microhei-fonts net-snmp net-snmp-utils

mysql 설정 수정
\cp /usr/share/mysql/my-medium.cnf /etc/my.cnf
  MySQL/etc/init.d/mysqld start
       mysqlcreate database zabbix character set utf8 collate utf8_bin;grant all on zabbix.* to zabbix@'localhost' identified by 'zabbix';flush privileges;exit

데이터 파일 가 져 오기
cd /usr/share/doc/zabbix-server-mysql-3.0.7zcat create.sql.gz |mysql -uzabbix -pzabbix zabbix

관련 데이터 수정 php 프로필 수정
egrep -n "^post_max_size|^max_execution_time|^max_input_time|^date.timezone" /etc/php.inised -i 's#max_execution_time = 30#max_execution_time = 300#;s#max_input_time = 60#max_input_time = 300#;s#post_max_size = 8M#post_max_size = 16M#;910a date.timezone = Asia/Shanghai' /etc/php.ini

수정 zabbix서버 프로필
sed -i '115a DBPassword=zabbix' /etc/zabbix/zabbix_server.conf

웹 페이지 파일
cp -R /usr/share/zabbix/ /var/www/html/

파일 권한 부여
chmod -R 755 /etc/zabbix/webchown -R apache.apache /etc/zabbix/web

zabbix 시작
echo "ServerName 127.0.0.1:80">>/etc/httpd/conf/httpd.conf/etc/init.d/httpd start/etc/init.d/zabbix-server start

문자 집합 을 수정 하고 기본 문자 집합 을 수정 합 니 다.
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repoyum -y install wqy-microhei-fonts

\cp /usr/share/fonts/wqy-microhei/wqy-microhei.ttc /usr/share/fonts/dejavu/DejaVuSans.ttf

클 라 이언 트 설치
yum localinstall http://mirrors.aliyun.com/zabbix/zabbix/3.0/rhel/6/x86_64/zabbix-agent-3.0.7-1.el6.x86_64.rpm -y

프로필 수정
sed -i 's#Server=127.0.0.1#Server=172.16.1.41#' /etc/zabbix/zabbix_agentd.conf

서비스 다시 시작
/etc/init.d/zabbix-agent restart

서버 검사
zabbix_get -s 172.16.1.41 -p 10050 -k "system.cpu.load[all,avg1]"

좋은 웹페이지 즐겨찾기